Stylesheet for unordered list

M

Marty L

Is it possible to set a spacing between bullet items in a stylesheet? I want
to put a little space between each item.
The margin-bottom property doesn't seem to do it.
 
D

Duncan

Worked for me:

<html>
<head>

<style type="text/css">
li {margin-bottom: 80px}
</style>

</head>
<body>

<ul>

<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>

</ul>

</body>
</html>

-Duncan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top