How to align this 3 font awesome images vertically?

I have no idea how to align these icons.

Can I use flex-box?
Or just plain CSS.

https://codepen.io/zhouxiang19910319/pen/PaVqPJ

I want all the buttons aligned like this: 09%20PM

wait… I get it now…

display: block,

then add in some margins.

you can also use

display: flex;
justify-content: space-around; (or space-between)

1 Like