时间:2021-07-01 10:21:17 帮助过:22人阅读
让div居中对齐 使用margin-left:auto;margin-right:auto; 可以让你的div居中对齐。 .style{margin-left:auto;margin-right:auto;} 缩写形式为: .style{margin:0 auto;} 数字0 表示上下边距是0。可以按照需要设置成不同的值。
@Html.Partial("_PartialMenuImg", "../../Images/Sys/test.jpg")
DIV 垂直水平 居中
1,关于居中使用css为:position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2; 对于ie6,只能把position:改成absolute;