Home > Article > Web Front-end > How to use bootstrap panel
This chapter will explain Bootstrap panels (Panels).
#Panel component is used to insert DOM components into a box. (Recommended learning: Bootstrap video tutorial)
To create a basic panel, you only need to add class .panel and class .panel-default to the As shown in the following example: Panel title We can add panels in the following two ways Heading: It's easy to add a heading container to a panel using the .panel-heading class. Use The following examples demonstrate these two methods: For more Bootstrap related technical articles, please visit the Bootstrap Tutorial column to learn! The above is the detailed content of How to use bootstrap panel. For more information, please follow other related articles on the PHP Chinese website!<div class="panel panel-default">
<div class="panel-body">
这是一个基本的面板
</div>
</div>
-
with .panel-title class to add predefined style titles.
<div class="panel panel-default">
<div class="panel-heading">
不带 title 的面板标题
</div>
<div class="panel-body">
面板内容
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
带有 title 的面板标题
</h3>
</div>
<div class="panel-body">
面板内容
</div>
</div>