div
111
;div style="float:left;" id="div33">222
How to make div33 Chinese text centered horizontally on div11, fixed cannot be used Width, can you only use css style to center?
Note that it should be centered on div11, not horizontally centered within div33
Reply to the discussion (solution)
1111111111111111
Yes,
.button_all { text-align: center;}
Copy after login
Reference: http://www.cnblogs.com/bisonjob/archive/2008/01/17/1042328.html
Just use it without fixed width Percentage
#div11
{
vertical-align:middle;
}
Since you want to be centered, why float
#div11{ width:100%; background-color:blue; } #div33{ width:100%; text-align: center; background-color:yellow; }
Copy after login
Let’s see if this is the effect