您的位置:首页 > 其它

居中方法

2016-01-14 18:15 302 查看
<div class="pls"></div>
1:position:absolute;left:50%;top:50%;z-index:3;background:#f60;transform:translate(-50% -50%);(适合手机页面,IE9(-ms-), IE10+)
2:position:absolute;left:50%;top:50%;width:300px;height:300px;margin-left:-150px;margin-top:-150px;(必须有宽高的元素)
3:margin:auto; width: 600px; height: 400px;position: absolute; left: 0; top: 0; right: 0; bottom: 0;(上下左右均0位置定位;margin: auto;不设置宽高也无所谓,支持IE8+)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息