I am trying to organize my list into two columns, with the first column containing 6 items. How can I achieve this layout instead of having the content split evenly between the columns?
ul {
columns: 2;
column-count: 2;
height: 800px;
li {
list-style-type: none;
padding: 1.25em 0 1.25em 50px;
font: 20px/24px "PT Root UI";
color: #272727;
mix-blend-mode: normal;
opacity: 0.8;
display: inline-block;
}
}
<ul className="about-company-list">
<li>
First item description.
</li>
<li>
Second item description.
</li>
<li>
Third item description.
</li>
...
</ul>