css3 - how to hide padding in Bootstrap? -


i trying hide hidden-xs in bootstrap padding. how able remove padding without removing whole row ? in advance!

i have this

<td class="paddinglefttenhiddenxs col-lg-8" style="padding-left:10px; "> 

css:

div.special > div[class*="col-"] {     padding-left: 0;     padding-right: 0; } 

html:

<div class="row special">     <div class="col-xs-8"> content... </div> </div> 

div.special > div[class*="col-"] targets children of special class have class starts "col-" make "col-xs-" target small

*edited


Comments

Popular posts from this blog

javascript - ScrollTo Effect (href to div) -

javascript - ng-class not responding to change in model in Angular? -

javascript - document.registerElement extending HTMLInputElement prototype while using custom tag name to avoid implicit browser style -