Last active
September 24, 2015 09:14
-
-
Save nurbek-ab/149783ecc336c6266278 to your computer and use it in GitHub Desktop.
Bootstrap no gutters
This file contains 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
.container.no-gutters { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.container.no-gutters .row { | |
margin-right: 0; | |
margin-left: 0; | |
} | |
.container.no-gutters .row > [class^="col-"], | |
.container.no-gutters .row > [class*=" col-"] { | |
padding-right: 0; | |
padding-left: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment