in addition to Chris Schmitz's post - when I use CSS drawing, I always have a question, should I use 2 or more cool names for one div
<div class="span-13 prepend-7 my-class-name"> .span-13 {width:510px;}
or combine it into one class
<div class="my-class-name"> .my-class-name {font:; color:; background:; width:510px; padding-left:280px;}
and I always choose the second option,
also I was not happy with this (using the plan is a requirement) reset the code in the plan
h1 {font-size: 3em; line-height: 1; margin-bottom: 0.5em;} h2 {font-size: 2em; margin-bottom: 0.75em;} h3 {font-size: 1.5em; line-height: 1; margin-bottom: 1em;}
to avoid differences in browsers, I always save drawing values ββwith a null value in my classes .my-class-name h1 {margin: 0px;}
So, the conclusion is - if you do not want your style and design β your choice was your choice.
source share