Answer the question
In order to leave comments, you need to log in
How to make the row element fill the entire width of the screen if bootstrap limits it?
I am newbie and just learning bootstrap.
There is such a landing screen:
As you can see, the layout was created according to the grid, that is, there will be indents on the right and left, how to remove them?
Answer the question
In order to leave comments, you need to log in
if bootstrap limits it
container
, and it in turn limits the width of the content. Whatever it is, you need to use the class container-fluid
. <div class="container"> <!-- max-width: 1200px -->
<div class="row">content</div>
</div>
<div class="container-fluid"> <!-- max-width: 100% -->
<div class="row">content</div>
</div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question