Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page that is an online version of an energy newsletter, and each story is separated by a <hr>. I just noticed today that one of them is rendering at 680px x 2px instead of 680 x 1px.

Having inspected the element I see the height comes from this css entry: "height: 0.1em;" and was wondering why the browser seems to think a different thickness is needed for this one and not the others? (I know it's not majorly important but it's just bugging me and someone must know!)

This is the page: http://utilitiessavings.co.uk/utilities-insider-issue-10-january-2013/

Thanks

share|improve this question

migrated from webmasters.stackexchange.com Jan 11 at 18:26

3 Answers

up vote 4 down vote accepted

An em is not an absolute unit of measure. It is proportional to your font size. Chances are, the two different <hr> tags are inheriting different font-sizes and are therefore calculating 0.1em differently.

Reference: http://kyleschaeffer.com/user-experience/css-font-size-em-vs-px-vs-pt-vs/

share|improve this answer
The thing is, they all sit inside the same element. Font size is 13px. – slugmandrew Jan 11 at 14:16
I think I must have a rogue tag in there somewhere and wordpress is closing it for me maybe... – slugmandrew Jan 11 at 14:22
I think the 1.3em is computed to be 13px though, right? – slugmandrew Jan 11 at 14:28
The point of the page I referenced is that when the font-size is also a relative measure, things can get a bit funky with how the em of the element in question is calculated. – eipark Jan 11 at 14:30
Right, I see. That makes sense. I added a couple of extra <hr>s in to see what would happen and it seems the second one is always given the 2px height, so like you say it's just the browser being funky by the looks of it. Thanks all. – slugmandrew Jan 11 at 14:34

As Eipark has suggested you are using em rather than pixels to format your HR bars.

Really simple fix would be

With Style.css look for line 67 hr { and change the follow below code from, too

From This

height: 0.1em;

To This

height:1px;
share|improve this answer
I understand that. I am just curious to learn more about em sizes as I don't know too much about them :) – slugmandrew Jan 11 at 14:25
I accepted this answer as it is what I actually did to fix it, but eipark's comments on using relative font sizes with other relative sizes are worth reading below. – slugmandrew Jan 11 at 14:38
Your question was why, not how to fix it. You should accept the answer that answers your question, primarily. – eipark Jan 12 at 5:49
Yes, you're right. Done – slugmandrew Jan 17 at 14:30

If you want to be absolute, you have er, that is the em of the root element. This way, it is always the same across the page, independent of font changes

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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