我有一個div,我想在中心對齊,水平地說。注意button
內,可以在中心對齊......可悲的是,我不能做出同樣的包裝文本對齊和div不居中
HTML標記:
<div class="wrap">
<div class="grayContainer">
<div class="editor-label">
name:
</div>
<div class="editor-field">
james
</div>
<div class="editor-label">
last name:
</div>
<div class="editor-field">
bond
</div>
<div class="alignCenter">
<input type="submit" value="press me" class="" />
</div>
</div>
</div>
CSS標記:
.grayContainer {
padding: 15px 10px 10px 10px;
width: 450px;
background-color: #E7E7E7;
border: 2px solid #CCCCCC;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
box-shadow: 0px 0px 6px 2px #CCCCCC;
position:relative;
behavior: url(/PIE.htc);
}
.grayContainer label
{
float: left;
width: 200px;
text-align: right;
color: #656565;
/*font-size: 12px;*/
text-shadow: 0 1px 0 white;
padding: 8px 13px 10px 0;
}
.grayContainer .alignCenter
{
padding: 20px 0;
}
.alignCenter
{
text-align: center;
}
.wrap
{
margin: 0 auto;
}
在此先感謝
我不喜歡修改div'grayContainer',是否有另一種方式來使用div 'wrap'? – Luis
@ LuisSanchez:是的,你可以使'wrap'與'grayContainer'具有相同的寬度,那麼你可以使用'margin:0 auto;':http://jsfiddle.net/Guffa/dS9Bc/6/ – Guffa
然後,我會使用這個最後的解決方案,thx – Luis