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:
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:
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)