Twitter bootstrap nav-stacked css not working

BageOpinvania

New Member
I am trying to achieve the stackable effect as shown here:http://twitter.github.com/bootstrap/components.html#navsbut somehow it is not working for me. Here is the link to a plunk that I have created:http://plnkr.co/edit/LSR3ijKGiOIyrYAbHm7gIt just shows three list items one below another without the navbar effect of bootstrap.\[code\]<!doctype html><html><head> <link href="http://stackoverflow.com//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> <script src="http://stackoverflow.com//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script></head><body> <div class="row-fluid"> <div class="offset4 span4"> <ul class="nav nav-tabs nav-stacked"> <li> Item1</li> <li> Item2</li> <li> Item3</li> </ul> </div> </div></body></html>\[/code\]I must be doing some blunder that something as simple as nav-stacked is not working. Would be glad and grateful if someone could point out my mistake.
 
Back
Top