css - multiline listitem with aligned fontawesome icon -


i making list of items <li> tag , different fontawesome icon each list item in twitter bootstrap. tried make list test center vertically, cant way

<ul class="middle"> <li>  <a href="#">   <i class="icon-cog icon-2x"></i>    long multiline item one</a> </li> <li>  <a href="#">   <i class="icon-pencil icon-2x"></i>     long multiline item 2  </a> </li> </ul> 

which produced

lits 1

this want achieve

list

how can achieve this?

is looking at
http://jsbin.com/ifawoya/1/

ul{list-style:none; width:100px;} ul li {position:relative; margin:0 0 20px 0} ul li a{position:relative; display:inline-block; padding-left:35px;} ul li i{position:absolute; padding-right:25px; top:30%;}   <ul class="middle">   <li>     <i class="icon-cog icon-2x"></i> <a href="#">very long multiline item one</a>   </li>   <li>     <i class="icon-pencil icon-2x"></i> <a href="#">very long multiline item two</a>   </li> </ul> 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -