English 中文(简体)
Bootstrap Tutorial

Bootstrap with CSS

Bootstrap Layout Components

Bootstrap Plugins

Bootstrap Demos

Bootstrap Useful Resources

Selected Reading

Bootstrap - Panels
  • 时间:2024-09-17

Bootstrap - Panels


Previous Page Next Page  

This chapter will discuss about Bootstrap panels. Panel components are used when you want to put your DOM component in a box. To get a basic panel, just add class .panel to the <span> element. Also add class .panel-default to this element as shown in the following example −

<span class = "panel panel-default">
   <span class = "panel-body">
      This is a Basic panel
   </span>
</span>