div 居中 div垂直居中的实现

作者:烟中隐约闪现 | 创建时间: 2023-04-12
div 居中有两种情况: 1、水平居中 2、垂直居中...
div 居中 div垂直居中的实现

div 居中 - 水平居中

设置div的style属性为: margin-left:auto;margin-right:auto; 可缩写为: margin:0 auto;

也可以设置css为: .juzhong_style{margin-left:auto;margin-right:auto;} 可缩写为: .juzhong_style{margin:0 auto;}

div 居中 - 垂直居中

设置div的style属性为: position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2; 针对IE6,需要修改: position:absolute;

也可以设置css为: .juzhong_style{position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2;} 针对IE6,需要修改: .juzhong_style{position:absolute;left:50%;top:50%;margin-left:width/2;margin-top:height/2;}

温馨提示

设置样式式一定要注意样式的执行次序
点击展开全文

更多推荐