Flexbox , Grid-template , or flexbox . p>
I have this doubt because when you see the websites that used Bootstrap the code stays in class
<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 neither need class
<div class="container">
<header></header>
<nav></nav>
<footer></footer>
</div>
With flex-box n you 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 using grid-template is to use flexbox along with it. Masss ... Are there problems in the Bootstrap 'polluting' code in so many classes? It's worth using Bootstrap because it's ready, but filling the html of classes, or it's worth using grid-template + flexbox (giving a little more work) filling up with so many classes?