I made a css-only dropdown menu. The requirement was to have a horizontal bar of items that can each drop down a vertical menu. Furthermore, those items should not drop a tertiary menu, but instead just show bulleted lists. My html has three nested ul and the menu is working perfectly in all modern browsers. It looks like this:

original

However, I did not like how the darker box behind the link is starting right of the bullet and does not stretch over the whole menu width, so I played around a bit and finally came to this tweak:

#nav li ul li ul li a {
    padding-left:1.8em;
    margin-left:-1.8em;
}

Now the bulleted menu item looks just like I wanted:

working

And due to the nature of em beeing relative to the font size, it works independently of the font size, like shown with a larger font size here:

working (larger font)

I tested this on Internet Explorer 8+9+10(developer preview), Firefox 3+7, latest Chrome, Opera and Safari and it works like a charm.

However, I just dont understand why it is exactly 1.8em that does the job. How come every browser indents the bullet items exactly this far? I searched the internet on this topic, but I did not find anything helpful. Can I be sure this works on future browsers? Are those 1.8em specified in the HTML standard?

Thanks in advance for any hint!

Edit:

To DisgruntledGoat's answer: It would not work if I used 1em/-1em or 20px/-20px. With this style:

#nav li ul li ul li a {
    padding-left:20px;
    margin-left:-20px;
}

I get this (obviously not scaling with the font size) result for different font sizes:

pixel based

Similarly, 1em/-1em is also off and looks like on the right in the picture above but scaling with the font size. It still looks like 1.8em is the magic distance for some reason...

link|improve this question

Actually the default for all browsers is 40px, not 1.8em. – DisgruntledGoat Nov 10 '11 at 0:34
@DisgruntledGoat: ok, now I'm even more confused... Then why does my solution even work for different font sizes? – Philip Daubmeier Nov 10 '11 at 3:30
Without seeing the rest of your code, I can't be sure, but my guess would be that it's defined somewhere in your CSS. The bullets, by default, don't actually take up any space, and will be invisible if there is no padding on the list. – Ryan Kinal Nov 10 '11 at 14:48
@Ryan Kinal: I set up a Fiddle here jsfiddle.net/24M5q if you want to have a closer look. MenuItem3 is dropping down on hovering. – Philip Daubmeier Nov 10 '11 at 14:53
* margin or padding – Ryan Kinal Nov 10 '11 at 14:56
show 1 more comment
feedback

migrated from webmasters.stackexchange.com Nov 9 '11 at 17:26

This question came from our site for pro webmasters.

4 Answers

up vote 2 down vote accepted

Given your code, you've set up your ul such that it has no margin or padding. However, you've set up your li's such that they have margin-left: 1.8em:

#nav li ul li ul li {
    display: list-item;
    margin-left:1.8em;
    list-style:disc outside none;
}

#nav li ul li ul li {
    margin-left: 1.8em;
    padding-left: 0;
}

And there it is.

link|improve this answer
omg how could I have overlooked that... Thanks a ton! I feel quite stupid now :) – Philip Daubmeier Nov 10 '11 at 15:07
No problem, always glad to help – Ryan Kinal Nov 10 '11 at 15:14
feedback

Based on many years of inconsistent browsers - I'd say you can't trust them to ever be consistent. The best option is to forcibly control it yourself.

You can use that by simultaneously setting the padding-left and margin-left of an li. eg:

li {
  margin-left: 1.8em;
  padding-left: 0;      
}

Apparently some (mainly older) browsers use padding and some margin - so be sure to set both.

(edit by Philip Daubmeier: corrected css)

link|improve this answer
Yes, older browsers (especially IE) did things different, definitely set both. – derobert Nov 9 '11 at 18:27
Thanks, thats a good point. btw it has to be just the other way round: margin-left: 1.8em; padding-left: 0;. However, that still doesnt explain why every browser today seems to go with 1.8em as a default... – Philip Daubmeier Nov 10 '11 at 13:25
feedback

You should definitely do a CSS reset and then set the properties the way you need them. Never trust browsers to be consistent. It adds a bit of coding but at the same time future proofs your code.

link|improve this answer
Thanks! That answers my first question (robustness/future proof). I am still wondering where those 1.8em come from and why all browsers use this consistently... – Philip Daubmeier Nov 10 '11 at 14:33
Resets are counter-productive. Normalization is where it's at. – Ryan Kinal Nov 10 '11 at 14:40
But "normalization" is just a more inteligent reset. – Michał Gancarski Nov 10 '11 at 23:07
1  
Yeah. You're right. Emphasis on the phrase "more intelligent". The key is to use the concept of normalization - style what you're going to use, be aware of the defaults, and don't murder all the styles just to write more. Think YAGNI. – Ryan Kinal Nov 22 '11 at 20:45
feedback

To answer the question and your comment: your solution works because you negate the padding with the exact same size margin. But the spacing to the left of the list is larger with the larger font size. You would get the same result with 1em padding and -1em margin or 20px and -20px.

As I mentioned in the comment, the actual default padding for lists is 40px. To make things even more confusing, on checking the user agent stylesheets (in Chrome Dev Tool and Firebug for Firefox) they report unique CSS properties: -webkit-padding-start or -moz-padding-start respectively.

I assume that these special properties are used in place of regular padding due to lists being a special case in HTML - they have hanging bullets/numbers that don't count in the padding.

link|improve this answer
Thanks for your answer. However, what you say (in the first paragraph) does not seem to be the case. See my updated. – Philip Daubmeier Nov 10 '11 at 13:56
@Philip it's because you're applying those values to the <a> element not the list. So you're still getting the padding from the <ul>. – DisgruntledGoat Nov 10 '11 at 19:29
I see what you mean now. I kind of mistunderstood you before. I somehow forgot that I assigned a 1.8em margin to the li *facepalm*... Thanks for your help! – Philip Daubmeier Nov 10 '11 at 22:40
feedback

Your Answer

 
or
required, but never shown

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