Answers for "html how to split a div into two columns"

CSS
2

split div into 2 columns

<div id="content">
  <div id="left">
     <div id="object1">some stuff</div>
     <div id="object2">some more stuff</div>
  </div>

  <div id="right">
     <div id="object3">unas cosas</div>
     <div id="object4">mas cosas para ti</div>
  </div>
</div>
Posted by: Guest on August-06-2021
0

html how to split a div into two columns

.two-column-div {
 column-count: 2;
}
Posted by: Guest on October-06-2021

Code answers related to "html how to split a div into two columns"

Browse Popular Code Answers by Language