3
Speak guys, I would like to know what is more recommended to use on a site: Bootstrap, Grid-template or flexbox.
I have this doubt because when looking at the websites that used Bootstrap the code gets checked classes
<div class="row">
<div class="col col-md-4"></div>
<div class="col col-md-4"></div>
<div class="col col-md-8"></div>
</div>
With grid-template nor need for class
<div class="container">
<header></header>
<nav></nav>
<footer></footer>
</div>
With flex-box n need to specify both...
<div class="container">
<header>
<div class="flexbox"></div>
<div class="flexbox"></div>
</header>
<nav></nav>
<footer></footer>
</div>
I’ve still been seeing that the normal when you use grid-template is to use flexbox together with him. Masss... there are problems in Bootstrap 'polluting' the code with so many classes? Is it worth using Bootstrap because he’s ready, but filling html with classes, or it’s worth using grid-template + flexbox (giving a little more work) but not filling so many classes?
actually has no problem using bootstrap, I know programmers who use both bootstrap, when some who create their style manually. So it varies according to what you intend to do, and what will suit your needs, bootstrap makes many things easier, due to having many classes that are useful for various subjects. I particularly use bootstrap and find it super easy to actually work with it, and I don’t think it pollutes the code. On the contrary, I can style a table, quickly create a screen, and when you get the bootstrap you’ll see how simple it is
– user92870