div水平垂直居中的解决方案
让div水平居中对齐
.style{margin-left:auto;margin-right:auto;}
缩写形式为:
.style{margin:0 auto;}
数字0 表示上下边距是0。可以按照需要设置成不同的值。
让div水平垂直居中
position:fixed;
left:50%;
top:50%;
margin-left:width/2; //width为居中元素的宽度值,为固定值
margin-top:height/2; //width为居中元素的高度值,为固定值
对于ie6,只能把position:改成absolute;
让文本居中:单行
height:300px;
line-height:300px;

浙公网安备 33010602011771号