Tagged Questions
5
votes
2answers
125 views
Using fractional em's in CSS's font-size property
Say, I have the following CSS rule defined:
.className {
font-size:0.89em;
}
My question is, how "deep" into fractions can I go while specifying 'em's for browsers actually to support it and for ...
2
votes
3answers
83 views
What does font-size:larger do to a font that is 1em?
I'm updating a website that has a lot of sections with the CSS property font-size:larger.
I'd like to replace this so that it is using EMs instead, because it is more explicit what the size will be.
...
1
vote
1answer
44 views
How does using 'em' help me in css?
I've heard that using 'em' for font size is recommended. I've tried it, but I really don't see any advantage of it. Actually, all of my co-workers were confused.
I've read few articles over the ...
1
vote
2answers
66 views
Typography: quick question about EM's
Lets say I have the following code:
<html>
<body>
<header>
<h1>
Hello World
</h1>
</header>
</body>
</html>
body{
// ...
1
vote
3answers
554 views
CSS - How to view computed font size?
When you specify font sizes in "em" units, the browser calculates the pixel values based upon its parents. Is there a way to view the final computed pixel size? Can Firebug do this or is there another ...
0
votes
2answers
26 views
Relative font sizes tricky on child elements?
I am learning CSS, and was reading questions about Relative vs Absolute font-sizes on StackOverflow. I came across two threads.
1. In one thread (CSS font size: relative vs. absolute values. Which ...
0
votes
7answers
531 views
what is em font-size. How much is it to pixels?
I want to know what is em and how much is it to pixels. I also read somewhere about some ie bug and to overcome that set body font-size to something but couldnt follow much can somebody explain that ...