Home > Mobile >  How Can I Create 3 Columns on a Webpage Using Bootstrap?
How Can I Create 3 Columns on a Webpage Using Bootstrap?

Time:11-22

enter image description here I’m relatively new to webd and want to use boostrap or any other css frameworks which exactly creates these 3three columns and display them, i’ve tried using circle for images but can’t figure out the exact css to implement this if somebody can help me out with this would be great i’ve spent an entire night but can’t make it exactly look like this!

CodePudding user response:

Try using grid system to divide something into 3 separate columns. https://getbootstrap.com/docs/5.0/layout/grid/

CodePudding user response:

if you want to create 3 columns with bootstrap first of all you have to import the bootstrap to your html. Than you need to create a row that contains your columns, and inside you can create the columns:

first column content second column content third column content
  • Related