Reputation: 457
I want a specific nested grid layout to display pictures. But I have an issue that I am unable to solve : my offset for xs screen is applied on sm, md screen. You can see it in action here :
https://www.bootply.com/lpeNg9CcG3
My template is wrong, and what is the good one to only apply an offset on XS screen ? Or this is an issue of bootstrap ?
Thanks for your help !
Upvotes: 0
Views: 19
Reputation: 457
I found the solution:
I have to overwrite my col-xs-offset-1
with col-sm-offset-0
and col-md-offset-0
.
Indeed, this is a strange behavior of Bootstrap...
Upvotes: 2