When should I use Twitter Bootstrap 4 shorthand spacing and sizing class utilities vs css, and why -


for example, set padding-left:

// bootstrap shorthand class utility <div class="pl-1"></div>  or  // regular css <div class="blah"></div>  .blah{     padding-left: 5px; } 

so practical situations use 1 or other?


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -