I know this is pretty basic, but it is giving me hangups. I have a basic list:

<ul>
    <li><a href="#">Insert Link Here</a></li>
    <li><a href="#">Insert Link Here</a></li>
    <li><a href="#">Insert Link Here</a></li>
</ul>

What do I need to do to make sure the last <li> item gets cleared? I've tried adding style="clear:both" to the end with no avail. Also I've added a 'div' after the last <li> tag before the closing </ul> tag, that works, but I know it doesn't validate.

link|improve this question

2  
what do you want exactly? – KARASZI István Sep 24 '10 at 14:41
2  
Mister Morden, is that you..? – David Thomas Sep 24 '10 at 14:47
Mister Morden..? – Jon Harding Sep 24 '10 at 14:54
1  
it's a Babylon 5 joke, told in the style of Slashdot humour. See: en.wikipedia.org/wiki/Morden_(Babylon_5) – David Thomas Sep 24 '10 at 14:59
feedback

2 Answers

up vote 7 down vote accepted

if you want to have the background behind a block item which have only floated items inside, then:

ul {
  overflow: auto;
}
link|improve this answer
This actually seems to be the easiest solution. I removed the extra <li> element and added the class reference and it works. – Jon Harding Sep 24 '10 at 15:16
Smashing solution. Saved me I don't know how much time! – BizNuge Jun 25 '11 at 12:55
Just learned something new! Very good and easy solution! Used the use the clearfix. – Morgen32 Jan 6 at 15:19
feedback

Given that you've found "[adding] a div after the last <li>...works" why not try adding another <li>, give it a class-name of, for example clearing and:

li.clearing {display: block; clear: both; }

If you need this to take up little, or no, room then adding height: 0; background-color: transparent; border: 0 none transparent; should prevent its being visible, while still causing the clearing to occur.

It would almost certainly be a benefit if you could add your use-case, and explain, as the comment asked: what do you want? (and I say that with trepidation, after watching too much Babylon 5 recently).

link|improve this answer
yep I did that. Oddly it didn't work inline '<li style="clear:both">' but if I just added <li class="clearing"> that seemed to work. Thanks for the quick help – Jon Harding Sep 24 '10 at 14:48
2  
That is because li is an inline element, and the css supplied about converts it to a block element. clear:both; does work on an inline element. – JamesStuddart Sep 24 '10 at 14:55
@Jamestuddart, +1 for the explanation. – David Thomas Sep 24 '10 at 15:06
feedback

Your Answer

 
or
required, but never shown

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