Bootstrap land and value land
Previous
This is a lightweight and flexible component that can be extended to the entire browser view to display key content on the website. This article will introduce Bootstrap land
Overview
The effect of the Well style is similar to that of the jumbotron style. The difference is that the well style has a border setting and the default height is the height of the adaptive text. Using Well on elements can achieve the simple Effect of inset.
The use of the Well style is very simple, just use the. well class.
.well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05); box-shadow: inset 0 1px 1px rgba(0,0,0,.05);}
<Div class = "well"> the blue ideal of a match </div>
Dimensions
The well style provides different sizes, mainly including padding and rounded corner sizes, respectively well-lg and well-sm. When used, it can be directly applied to the same element with well.
.well-lg { padding: 24px; border-radius: 6px;}.well-sm { padding: 9px; border-radius: 3px;}
<Div class = "well"> the blue ideal of a match </div> <div class = "well-known-lg"> the blue ideal of a match </div> <div class = "well-sm"> the blue ideal of a match </div>