Which of the following is correct about bootstrap wells?
a. A well is a container in <div> that causes the content to appear sunken or an inset effect on the page.
b. To create a well, simply wrap the content that you would like to appear in the well with a <div> containing the class of .well.
c. Both (a) and (b) are correct.
d. None of the above.
c. Both (a) and (b) are correct.
Explanation: In Bootstrap, a well can be defined as something like a bootstrap panel that has some round borders and padding around it. The main purpose of creating a well is to draw attention towards some content of the webpage in a website. The .well class can be used to create basic well. The .well class inserts a rounded border around the element with a gray background color and some padding. However, this can be changed with the help of the text color and padding using CSS.
In simple words, a well is a container in <div> that makes the content to appear sunken on the page.
To create a well, simply wrap the content that a user would like to appear in the well with a <div> containing the class of .well.