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