css - twitter bootstrap fluid row shifted down because of float-left div -


i'm trying have 2 column layout. first column fixed width, second 1 fluid. can done in way , works fine regular content.

.left {     width:200px;     float:left;     background-color:gray; } .right {     background-color:red;     margin-left:200px; } 

fiddle: http://jsfiddle.net/ergec/t7s3k/1/

problem

when comes point need bootstrap fluid rows on right column, following problem occurs. not first row-fluid rest shifted down right below left column.

fiddle: http://jsfiddle.net/ergec/fuwar/

i can fix wrapping span12

fiddle: http://jsfiddle.net/ergec/kz7vc/

but why have wrap in span12?


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -