0
How to orientation this list to horizontal?
Code <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">Services</a></li> <li><a href="#">About us</a></li> </ul> </nav> In nav view there is list of element in a order of vertical form and I need to display horizontal list Please comment answer and if like this question please upvote
2 odpowiedzi
+ 5
What if you make the display of the <li> inline? (using css)
+ 4
li { float: left; }