div居中问题
<div id="div11">
<div style="float:left;" id="div22">111</div>
<div style="float:left;" id="div33">222</div>
</div>
怎样使div33中文字对div11居中水平居中,不能使用固定宽度,只能使用css样式能居中吗
注意是要针对div11居中,不是div33内水平居中
div
[解决办法]
能,
.button_all {参考:http://www.cnblogs.com/bisonjob/archive/2008/01/17/1042328.html
text-align: center;
}
#div11{
width:100%;
background-color:blue;
}
#div33{
width:100%;
text-align: center;
background-color:yellow;
}