JSFiddle - React, Tailwind, and code Playground
HTML
<ul id="mainFeatures">
<li id="wishlist">Wish List</li>
<li id="sharing">Sharing</li>
<li id="linking">Linking</li>
</ul>
CSS
#right_main ul#mainFeatures {
height:250px;
width:350px;
overflow:hidden;
margin-left:25px;
}
#mainFeatures li {
font-weight:bold;
font-size:22px;
font-family:"Myriad Pro", sans-serif;
padding:5px;
}
#mainFeatures li#wishlist {
background:url(http://cdn3.iconfinder.com/data/icons/fugue/icon/books-brown.png) no-repeat 0 10px;
padding-left:10px;
}
#mainFeatures li#sharing {
background:url(http://cdn2.iconfinder.com/data/icons/fugue/icon/notebooks.png) no-repeat 0 10px;
padding-left:30px;
}
#mainFeatures li#linking {
background:url(http://cdn2.iconfinder.com/data/icons/ledicons/books.png) no-repeat 0 10px;
padding-left:30px;
}