skip to Main Content

Css – Flexbox element is out of position

I have a set of elements that make up a menu: .standardText { font-family: Brutel-Thin; color: aliceblue; letter-spacing: 3px; font-size: 25px; } .linksContainer { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-end; width: 100%; } .menuLink { display: flex; flex-direction:…

VIEW QUESTION

Html – Positioning text center with bootstrap 5 flex

In these divs: <div class="col-6 col-md-4 col-lg-3 col-xl-2 my-3"> <a href="#" title="Falazóhabarcs" class="main_category d-flex justify-content-between align-items-center radius p-3"> <div> <i class="fa fa-th-list me-2"></i>Gépi alapvakolat </div> <div> <i class="fa fa-chevron-right"></i> </div> </a> </div> How can i align the text correctly center,…

VIEW QUESTION
Back To Top
Search