Please note, this is a STATIC archive of website www.tutorialrepublic.com from September 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Sizing Columns Based on the Width of their Content</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <style> /* Some custom styles to beautify this example */ .row{ margin-top: 1rem; background: #dbdfe5; } [class^=col]{ padding: 10px 15px; background: #abb1b8; border: 1px solid rgba(0,0,0,0.5) } </style> </head> <body> <div class="container"> <div class="row justify-content-md-center"> <div class="col-md-3">Column left</div> <div class="col-md-auto">Variable width column</div> <div class="col-md-3">Column right</div> </div> <div class="row"> <div class="col">Column left</div> <div class="col-auto">Variable width column</div> <div class="col">Column right</div> </div> </div> <p class="text-center mt-3"><strong>Note:</strong> Enter some more content inside the variable width column to understand how it works.</p> </body> </html>