+ 2
What's flexbox?
4 Respostas
0
Flexbox is an auto-width calculated grid system where you dont have to specify how much space it will grab for each columns.
In Grid, if i compare this with flexbox, you have to specify the value such as class="col-lg-6" or class="col-sm-6" which means dividing the 12 grid system into two parts. This is an explicit definition.
Whereas with flexbox, you dont have to specify such condition. By default all the elements will get aligned in a series of straight line with proper indentation, padding, and margin. The word 'flex' comes from the word 'flexible' and that is how flexbox is more 'flex'ible and reliable than grid system.
Hope this helps
+ 4
https://www.w3schools.com/css/css3_flexbox.asp for more visit this website
+ 1
Hmm.. Thanks
0
Here the answer,
https://spaceninja.com/2015/08/24/what-is-flexbox/
Good Luck~