0
Make an horizontal bullet list
Why do the bullet points disappear after using the CSS inline value on a HTML ul command . ? HTML <nav><ul> <li> <a href="#"> About </a></li> <li> <a href="#"> Games </a></li> <li> <a href="#"> Subscribe </a></li></ul></nav> CSS li { display: inline;}
2 Antworten
+ 3
Bullets disappointed due to display: inline override list default selector property, display:list-item;
Use float: left; instead
+ 1
thanks guys