CSS - horizontal align with flexbox

0 votes
308 views
added Mar 5, 2024 in CSS by lcjr Lieutenant (12,520 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.
...