Login
Remember
Register
Ask a Question
What will be the output of the below code?
0
votes
asked
Oct 7, 2019
in
Bootstrap
by
Tracy Williams
What will be the output of the below code?
<div
class="row">
<div class="col-xs-12 col-md-3">.col-xs-12 .col-md-3</div>
</div>
code-output
output-code
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 10, 2019
by
john ganales
The output of this will give the grids for extra small devices as we can see in the snippet col-xs-12 that has been used and it will also give the grids for desktop devices and above as the class col-md-3 has been used.
...