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

java - How to Configure JAXRS and Spring With Annotations -

visual studio - TFS will not accept changes I've made to a Java project -

php - Create image in codeigniter on the fly -