Tagged Questions

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?
2
votes
6answers
376 views

What is the relationship between ems and pixels?

What is the value of an em in terms of pixels? 10em = ?px ?
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{ // ...
0
votes
1answer
39 views

Background image size with em units should resized the image in safari while zooming? [closed]

In this link I see that image re-sizes in safari when i zoom in/out as the size of the image is given by em-s. Now what about background images. I have a design where background images stay the same ...
0
votes
2answers
56 views

H2 conversion not working

I'm attempting to convert element. The font-size conversion works fine, but the margin conversion isn't doing so great. Here is my attempt: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
0
votes
3answers
249 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 ...