111
222
怎样使div33中文字对div11居中水平居中,不能使用固定宽度,只能使用css样式能居中吗
注意是要针对div11居中,不是div33内水平居中
回复讨论(解决方案) 1111111111111111
能, .button_all { text-align: center;}
参考: http://www.cnblogs.com/bisonjob/archive/2008/01/17/1042328.html
不用固定宽 就用 百分比
#div11
{
vertical-align:middle;
}
既然想居中,为什么还要浮动
#div11{ width:100%; background-color:blue; } #div33{ width:100%; text-align: center; background-color:yellow; }
看看是不是这效果