In Bootstraps show that how panels can be created with footers. ?

 Posted by Vivek.Ramapuram on 6/10/2015 | Category: Bootstrap Interview questions | Views: 2576 | Points: 40
Answer:

We can include footer in the panel by using panel-footer predefined class of Bootstrap

Let us see an example :
<div class="panel panel-primary">

<div class="panel-heading"><p class="panel-title">DotNetFunda</p></div>
<div class="panel-body">DotNetFunda is the website for those who are looking for .Net Tips and Tricks.</div>
<div class="panel-footer clearfix">
<div class="pull-right">
<a href="#" class="btn btn-warning">Back</a>
<a href="http://dotnetfunda.com" class="btn btn-success">DotNetFunda</a>
<a href="#" class="btn btn-info">Next</a>
</div>
</div>
</div>

if you run this code you will see the following result in your browser


Asked In: While Learning | Alert Moderator 

Comments or Responses

Login to post response