html - How can I adjust the spacing between the elements that are in my toolbar? -
i have created toolbar , have 3 list elements: "home", "contacts", "about me". currently, side side borders separating them, give spacing between elements. code looks this:
html:
<div class="nav"> <ul> <li id="toolbar">home</li> <li id="toolbar">contacts</li> <li id="toolbar">about me</li> </ul> </div>
add margin each li
.nav li{ margin: 0px 3px; /* adjust px meet needs */ }
jsfiddle: http://jsfiddle.net/6mc9w/
Comments
Post a Comment