We can create drop up menu
<style>
body{
padding-top:50px;
}
</style>
</head>
<body>
<h2>Dropup</h2>
<div class="container">
<div class="dropup">
<button class="btn btn-danger dropdown-toggle" type="button" data-toggle="dropdown">
TechFunda
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">HTML</a></li>
<li class="divider"></li>
<li><a href="#">About Us</a></li>
</ul>
</div>
</div>
In the above code snippet we have defined the drop up menu, we have class as drop up and button as danger which appears in red color dropdown toggle, datatoggle as dropdown and we have span as caret which shows the symbol in the drop up menu
output
Views: 10819 | Post Order: 29