+ 3
How do you use flexbox?
Do you use flexbox by creating your own css or just downloading ready made css file.
4 ответов
+ 1
Flexbox is part of the CSS3 specification, so you can just use it in your own stylesheet if desired. Here's a guide:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
+ 1
Just add display property set to flex in any stly and see the magic
Display:flex;
And there is a another one also to reverse the position row wise or column wise
Display-direction:row-riverse;
Or column-reverse;
How cool it is, check it out
0
I'm curious about it too.
0
Sorry the second was flex-direction instead of display-direction☺️