Forum Moderators: not2easy
h1 {
font-size: 36px;
font-size: 3.6rem;
}
h6 {
margin: 0 0 7px;
margin: 0 0 0.7rem;
}
.widget-area h2 a {
font-size: 16px;
font-size: 1.6rem;
margin: 0 0 5px;
margin: 0 0 0.5rem;
}
does anyone know of a text editor that will automatically remove every line that ends with "rem;"
The beauty of rems is that just by changing the size on the html element you can change the whole page because all the font-sizes are related and the relationship is maintained on all the elements in the page.
For it to work, do you have to declare some font size on the "html" element? Or will it default to the user's preferred size, assuming their browser allows you to set one?