Twitter bootstrap nav-stacked css - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Nav Bar

Description

Twitter bootstrap nav-stacked css

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css"> 
 </head> <!--from w  w  w  .jav a2 s  .com-->
 <body> 
  <ul class="nav nav-tabs nav-stacked"> 
   <li class="active"> <a href="#">Lorem i</a> </li> 
   <li> <a href="#">Lorem</a> </li> 
   <li> <a href="#">Lorem</a> </li> 
  </ul>  
 </body>
</html>

Related Tutorials