Tagged Questions
13
votes
4answers
769 views
What are the advantages of using ems instead of % in CSS?
I understand the advantages of using ems in favor of static measurements like pixels and points, but why do most of the CSS people out there (SO excepted) prefer using ems instead of % values?
...
3
votes
3answers
86 views
What unit should I use for HTML?
I like to use em, and tend to stay away from % because it tends to screw up the design easily, and pt, px, cm... Because they aren't that friendly to all devices. Am I right in doing so?
0
votes
2answers
203 views
Using relative instead of fixed size in CSS
I want to use relative size instead of fixed size. I want to use em.
My CSS is:
body{
font:10px;
}
#wrap {
font:1.2em;
}
#wrap ul li {
padding-left:2em;
}
What is value of the li's ...