vote up 0 vote down star

given this html:

<ul id="topnav">
    <li id="topnav_galleries"><a href="#">Galleries</a></li>
    <li id="topnav_information"><a href="#">Information</a></li>
</ul>

and this css:

#topnav_galleries a, #topnav_information a {
	background-repeat: no-repeat;
	text-indent: -9000px;
	padding: 0;
	margin: 0 0;
	overflow: hidden;
	height: 46px;
	width: 136px;
	display: block;
}
#topnav { list-style-type: none; }
#topnav_galleries a { background-image: url('image1.jpg'); }
#topnav_information a { background-image: url('image2.jpg'); }

how would I go about turning the topnav list into an inline list?

flag

75% accept rate

4 Answers

vote up 3 vote down check

Try this:

#topnav {
    overflow:hidden;
}
#topnav li {
    float:left;
}

And for IE you will need to add the following:

#topnav {
    zoom:1;
}

Otherwise your floated < li > tags will spill out of the containing < ul >.

link|flag
works fine! Thanks – Jeff Winkworth Sep 9 '08 at 17:48
vote up -1 vote down
#topnav li { display: inline-block; }
link|flag
this was my original solution, which (untested in IE) had been proven incorrect – Jeff Winkworth Sep 9 '08 at 17:48
vote up 2 vote down

Giving the list items a width (50%?) and floating them left is more common since inline-block isn't supported very well.

link|flag
vote up 0 vote down

An alternative to floating the elements left, is this:

#topnav li {
    display: inline;
}
link|flag

Your Answer

Get an OpenID
or

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