/*
Ref: http://codepen.io/unavezfui/pen/Idyck/
Understanding [class*="col-"] - See line #26 below
Attribute selectors allow you to style an element’s box based
on the presence of an HTML attribute or of an attribute’s value
http://htmldog.com/guides/css/advanced/attributeselectors/
*/
body {
background-color: #222;
color: #ccc;
}
h3{
color:#f00;
}
.row-no-gutter {
margin-right: 0;
margin-left: 0;
}
.row-no-gutter [class*="col-"] {
padding-right: 0;
padding-left: 0;
}