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?
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; }
Comments
Post a Comment