css - I want to align grid in center -
as see code grid_2 has float left. added center class fix in center div block floating left. want place grid_2 div in center. can 1 me fix this?
html code:
<div class="center"><div class="grid_2">content goes here </div> </div>
css:
.grid_0 { width: 100%; margin-bottom: 15px; display: block; } .grid_1, .grid_2, .grid_3, .grid_3c, .grid_4, .grid_4c { margin-left : 1.00%; margin-right : 1.00%; margin-bottom : 15px; float : left; display : block; -webkit-box-sizing: border-box; /* safari/chrome, other webkit */ -moz-box-sizing: border-box; /* firefox, other gecko */ box-sizing: border-box; /* opera/ie 8+ */ } .center{ display: block; text-align: center; margin: 0 auto !important; } .grid_1 { width: 98%; } .grid_2 { width: 48%; }
please find link below http://jsfiddle.net/kiranm/aqbs6/5/
ok, here problem lies in width of grid_2.
as width of grid_2 = 48% of entire page, on lefter side of page.
just remove width of grid , answer
if using same class on other pages add update class following properties :
.grid_2 { width: 48%;float:none;margin: auto !important; }
Comments
Post a Comment