Ask Daniel's CODEX · index

Bootstrap Grid: Desktop 4-8, Mobile 12-12

Bootstrap Grid: Desktop 4-8, Mobile 12-12

[1] DANIEL:

please write the bootstrap grid for a desktop section that has a 4 on left and 8 on right (desktop) but it becomes a 12 above a 12 for a mobile phone


[2] GROK:

``html <div class="container"> <div class="row"> <div class="col-lg-4"> <!-- Left content here --> </div> <div class="col-lg-8"> <!-- Right content here --> </div> </div> </div> ``

Ask Daniel's CODEX