Last active
July 19, 2016 10:09
-
-
Save tcdevs/492d8d94928478f57060ddb2e4feca5a to your computer and use it in GitHub Desktop.
Boostrap 3 no padding for the 'container-fluid'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container-fuid"> | |
<div class="row"> | |
<div class="col-lg-12 no-col-padding"></div> | |
content | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* remove padding from cols */ | |
.no-col-padding{ | |
padding-right: 0; | |
padding-left: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment