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;.

link|improve this question

1  
Where do you see en as a unit besides this code? It doesn't exist. – Wesley Murch Jan 31 at 17:44
1  
I see, the em tag wiki page is misleading... It's because the tag wiki is not only about the CSS unit em. – Wesley Murch Jan 31 at 17:49
DOES exist! but not for web! see my answer – Michael Durrant Jan 31 at 17:49
@MichaelDurrant: Not in CSS it doesn't. – Wesley Murch Jan 31 at 17:50
1  
Thanks, didn't see that, and sorry about deleting my comment. The page wasn't up-to-date. – Arlen Beiler Jan 31 at 17:51
show 2 more comments
feedback

3 Answers

up vote 1 down vote accepted

It is invalid in HTML/CSS however it is used in non-web print presses: Wikipedia mentions it under em:

The width of the em space ( ) is defined to be 1 em, as is the em dash (—).
By contrast, the narrower unit en is half an em.

link|improve this answer
You're thinking of typography, this is a CSS question. – Wesley Murch Jan 31 at 17:51
I'm not really thinking of anything I'm just answering the question about en and showing that although invalid it might have come from the user thinking about the non-online world. Just adding some extra info that some folks enjoy beyond "it's invalid and a typo" – Michael Durrant Jan 31 at 17:53
font-size:12en; is an invalid typo. en has no meaning (currently) in CSS. The question title is "What is the difference between em and en in CSS". CSS <-- – Wesley Murch Jan 31 at 17:54
I think we've kinda exhausted the topic right for meaningful comment? And we can also disagree whether the extra info's helpful and let other folks vote right? Good hanging wid ya. – Michael Durrant Jan 31 at 17:56
Yeah it's fine, you just kept urging me to read your answer as if I misunderstood something. – Wesley Murch Jan 31 at 17:57
show 1 more comment
feedback

And the answer can be found in the em tag page. Found it after I asked :)

link|improve this answer
You asked 30 seconds ago, just delete the post. (this isn't even an answer). Also, em is not a "tag" but a unit of measurement. Moot point, because there is no en unit. – Wesley Murch Jan 31 at 17:43
It's OK to answer your own question here. Could you add the link where you found your answer? Then, folks who come here in the future with this same question can get your answer. – DOK Jan 31 at 17:43
feedback

In CSS 'em' is a relative typographical unit that is equal to the font-size. If your font-size is 12px, then 1em is 12px for that element. Since 'em' is a relative unit of measurement, this helps when making typographical changes to multiple elements with different font sizes, for instance if you have:

<style> 
h1{ font-size: 24px; }
p{ font-size: 15px; }
.spacedout{ letter-spacing:1em; }
</style>

<h1 class="spacedout">Heading</h1>
<p class="spacedout">Paragraph</p>

then the spacing between letters would be visually equal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.