Bootstrap 3 wells added an inset panel around content. The component was removed from Bootstrap 4; use cards, borders, backgrounds and spacing utilities instead on newer pages.
<div class="well">
Basic well
</div>
<div class="well well-sm">
Small well
</div>
<div class="well well-lg">
Large well
</div>
<div class="border rounded bg-light p-3">
Similar visual treatment using Bootstrap 4 utilities.
</div>
<style>
.well {
background: #f00000;
}
</style><style>
.my_bg-class{
background: #ffff80;
}
</style><div class="well my_bg-class">This well is class='well my_bg-class'</div><style>\n";
str +=".my_bg-class {\n";
str +=" background: "+val+";\n"
str +="}\n"
str +="</style>
Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.