Learn how to use bootstrap well and content inside it to create an inset effect. It creates a rounded corners box with the light background where you can place your content.
Here is a simple Bootstrap well:-
Content Inside the Bootstrap Well
To create a bootstrap well component, you have to use the <div> tag with the class .well
and put your content in this element.
A simple well component is given below with content placed inside it.
Output
Resizing the Bootstrap Well Component
In addition to creating a simple well component, you can resize it in different sizes. Use the classes .well-lg
, .well-md
and .well-sm
to create varying size well component for your content.
Output
The class .well-md
creates a default size well component. You don’t need to use this class as it is the default size of the well. Use only the two classes .well-lg
and .well-sm
to create a larger and smaller size well for your content.