css3 - Twitter bootstrap li is not aligning with upper row first item in second and other rows -


can please take this link , let me know why <li class="span4"> in second , third line not aligning upper row?

enter image description here

because first .span4 child within .thumbnails having it's default left-margin removed - you'll need target fourth .span4 , same thing - 1 option use :nth-child() pseudo-class target - e.g.

.row-fluid [class*="span"]:first-child, .row-fluid [class*="span"]:nth-child(4) {     margin-left: 0; } 

http://imageshack.com/a/img29/5830/qalb.jpg


Comments

Popular posts from this blog

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -