CSS - horizontal align with flexbox

0 votes
124 views
added Mar 5, 2024 in CSS by lcjr Lieutenant (12,240 points)
/*add this directly to the element*/

.make_it_horizontal_aligned {
    display: flex; 
    align-items: center;
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...