Tagged Questions
13
votes
4answers
794 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?
...
5
votes
2answers
160 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 ...
4
votes
6answers
455 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 ...
2
votes
3answers
89 views
CSS question about em?
I'm trying to convert all of my site's margin values to em in place of pixels, but I'm having a hard time trying to figure out what 'em' actually is. I thought it was a set distance based on the users ...
2
votes
2answers
497 views
script to convert css sheet from px to em
Anyone know of a script (php, python, perl, bash, whatever) that will convert a stylesheet from px to em?
Like, it would take input of the filename and base font-size (default 16) and convert all px ...
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.
...
2
votes
6answers
383 views
What is the relationship between ems and pixels?
What is the value of an em in terms of pixels?
10em = ?px ?
1
vote
1answer
47 views
CSS Baseline Grid - why do line-heights get smaller while font-sizes get larger?
Try to adapt the zoomable baseline grid from the golden grid system: https://github.com/jonikorpi/Golden-Grid-System/blob/master/GGS.css
here's the relevant CSS (unless I'm missing something):
/*
*
...
1
vote
2answers
68 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
1answer
104 views
A Couple of CSS Questions. src:robot-or-not.com(css)
body {
background: #E2E2E2 url("/-/img/bg.jpg") repeat -20% -146px;
color: #45445d;
color: rgba(0, 0, 0, 0.7);
font: normal 100%/1.5 Calibri, Candara, Segoe, "Segoe UI", Optima, ...
1
vote
3answers
565 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
31 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
2answers
65 views
Using em for layout causes inconsistency across different browsers
I am trying to build a site using elastic layout. I have used Eric Meyer's CSS reset and also used body {font-size:62.5%} in my stylesheet.
EDIT: Here is my HTML structure and CSS
<html>
...
0
votes
1answer
58 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
1answer
38 views
image lost when using ems to resize
I'm running into an issue with my template that seems strange to me: when I use ems to define image height/width, it will not display, while setting the image size using pixels works fine. Using ems ...
0
votes
2answers
57 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
2answers
89 views
Trouble with em based layout
I am trying to build a layout using css where all dimensions are specified in em. I was under the impression that this would allow the page to display the same way at different font sizes/zoom levels. ...
0
votes
7answers
577 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 ...
0
votes
2answers
204 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 ...
0
votes
3answers
261 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 ...
-3
votes
3answers
41 views
What is the difference between em and en in CSS
I am working with some (problematic and strange) css, and I am wondering what the difference between en and em is when determining sizes font-size:12en; height:3em;.