html - How to add line-spacing between two <li> -


i have unordered list in 1 of page designed using twitter bootstrap.

<ul class="list-unstyled col-md-5   col-md-offset-3">  <li><span class="glyphicon glyphicon-link"></span>link1</li>  <li><span class="glyphicon glyphicon-link"></span>link2</li>  <li><span class="glyphicon glyphicon-link"></span>link3</li>  <li><span class="glyphicon glyphicon-link"></span>link4</li> </ul> 

how can add line-spacing between li tags?

just add margin li elements not last one.

ul > li + li {     margin-bottom: 5px; } 

Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -