this text is plan text
text with offset
text with offset
text with offset & breakpoint
text with offset & breakpoint

code
Exported from Notepad++
<!DOCTYPR html> <html lang="en"> <head> <meta charset="UTF-8"> <title>BootStrap</title> <style> .container { border: 1px solid black; } .row { border: 1px solid green; } .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { border: 0px solid green; } .pink { background: pink; } .green { background: green; } .silver { background: silver; } .lblue { background: lightblue; } .Orange { background: orange; } .Violet { background: Violet; } .msgreen { background: MediumSeaGreen; } </style> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="row"> <div class="col-5 msgreen">this text is plan text </div> </div> <div class="row"> <div class="col-5 offset-3 green">text with offset </div> <div class="col-2 offset-1 lblue">text with offset </div> </div> <div class="row"> <div class="col-md-4 offset-md-2 Orange">text with offset & breakpoint </div> <div class="col-md-3 offset-md-1 offset-lg-2 Violet">text with offset & breakpoint </div> </div> </div> </div> </body> </html>