+ 2
How can we allign <nav> options in a single line instead of representing them in different lines using bullets?
5 Réponses
+ 4
<nav><a href="/Discuss/">Discuss</a> | <a href="/Codes/">Codes</a></nav>
+ 3
By not using ul/li tags.
+ 2
nav{display:inline-block;float:right} in the css
0
can you give an example?
- 1
tnq guys..was really informative :)