Tagged Questions

9
votes
4answers
119 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? …
2
votes
6answers
165 views

The comparison of ems to pixels

Hello, can someone please tell me the value of an em to pixel? 10em = ?px ? thanks
0
votes
4answers
135 views

How can I display an image using the “em” unit?

I've created a <div> with width:10em and height:5em. Now I would like to display an <img> (GIF image) in this <div> with the exact same size. But apparently it doesn't "know" the em …
0
votes
2answers
90 views

problem with em unit

Hi, 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 …
1
vote
3answers
118 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 …
4
votes
6answers
359 views

Do CSS ems always represent the font size?

From what I know, the em keyword in CSS means the current size of a font. So if you put 1.2 em, it means 120% of the font height. It doesn't seem right though that em is used for setting the width …
0
votes
1answer
31 views

Positioning form’s inputs with em unit.

I was looking for way to set position for inputs other than using tables. I googled this: Applying CSS to forms and I've made a test site: korran.ovh.org/test/test.html Text-type inputs looks good, …