0 votes
in Bootstrap by
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>

1 Answer

0 votes
by
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.

Related questions

0 votes
asked Mar 23, 2021 in JavaScript by sharadyadav1986
0 votes
asked Mar 24, 2021 in JavaScript by sharadyadav1986
...