How do I make a list similar to the one as shown in the example. Thank-you.
How do I make a list similar to the one as shown in the example. Thank-you.
Something like this
css:
htmlCode:h1 { color:#ff0000; font-size:16px; }
Code:<h1>Title</h1> <ul> <li>point one</li> <li>point two</li> <li>point three</li> </ul> <h1>Title</h1> <ul> <li>point one</li> <li>point two</li> <li>point three</li> </ul>
Corrections to my coding/thoughts welcome.
do you mean how (in the first list in your image) the bullets are separated from the text?
Code:ul{ list-style-position: outside; }
Bookmarks