ifubad Posted August 3, 2008 Share Posted August 3, 2008 #con ul li { display: inline; float: right; } <div id="con"> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> </ul> </div> I just noticed using float:right on a <ul> will display the <li> order in reverse (i.e. instead of displaying it as "Link 1 Link 2", it's "Link 2 Link 1"). Is the only way to work around this is to reverse the <li> order in the markup? Link to comment https://forums.phpfreaks.com/topic/117906-float-right-reverses-list-items/ Share on other sites More sharing options...
JasonLewis Posted August 3, 2008 Share Posted August 3, 2008 Okay well you don't need float and the inline display. Try this out: <style type="text/css"> #con ul { float: right; } #con li { float:left; list-style-type:none; } </style> <div id="con"> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> </ul> </div> Link to comment https://forums.phpfreaks.com/topic/117906-float-right-reverses-list-items/#findComment-606573 Share on other sites More sharing options...
TheFilmGod Posted August 3, 2008 Share Posted August 3, 2008 #con ul li { display: inline; float: right; } <div id="con"> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> </ul> </div> I just noticed using float:right on a <ul> will display the <li> order in reverse (i.e. instead of displaying it as "Link 1 Link 2", it's "Link 2 Link 1"). Is the only way to work around this is to reverse the <li> order in the markup? Obviously this will be in reverse order, because you float the <li> right! - Why would you do that? You can float them left and float only the <ul> to the right. Unfortunately, that is still a poor way to lay the code out. If you explain what you are trying to achieve, I will be more than happy to help! Link to comment https://forums.phpfreaks.com/topic/117906-float-right-reverses-list-items/#findComment-606768 Share on other sites More sharing options...
ifubad Posted August 3, 2008 Author Share Posted August 3, 2008 after both replies, I now understand more on why it's doing what it's doing. Obviously this will be in reverse order, because you float the <li> right! - Why would you do that? Just practicing, trying to emulate the youtube home page. I now also see when display:inline is not necessary. Thnx to both Link to comment https://forums.phpfreaks.com/topic/117906-float-right-reverses-list-items/#findComment-606887 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.