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 - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -