Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Lars-Janssen's avatar

Text-align left with flexbox

Hello,

How could I give a text-align left with flexbox?

This is not working:

https://jsbin.com/diqiwulibu/edit?html,css,output

Thankyou

0 likes
2 replies
joedawson's avatar

Change:

.items {
  display: flex;
  flex-direction: column;
  background: red;
  align-items: center;
  text-align: left;
}

To:

.items {
  background: red;
}

Was there a reason you needed to use flex for .items?

Please or to participate in this conversation.