css - Adjusting the div margin with Bootstrap responsive mode -
i have following row in html , developed using bootstrap responsive css. push span4 -15px in desktop , tablets.
<div class="row-fluid" id="lat1"> <div class="span8></div> <div class="span4></div> </div>
i tried following solution , not working. can please tell me doing wrong here?
@media (min-width: 320px){ #lat1 .span4 { margin-left : -15px; } }
also, media queries supported in browsers support html5?
Comments
Post a Comment