现在的位置: 首页 > 综合 > 正文

css浮动层垂直水平居中固定兼容浏览器

2017年03月16日 ⁄ 综合 ⁄ 共 485字 ⁄ 字号 评论关闭
<styletype="text/css">

.box{ border:1px solid #000;
        width:200px; height:200px;  left:50%;top:50%;
        margin-left:-100px;margin-top:-100px;
        position:fixed;
        _position:absolute;
 _top:expression_r(eval_r(document.documentElement.clientHeight/2+document.documentElement.scrollTop));
 _left:expression_r(eval_r(document.documentElement.clientWidth/2+document.documentElement.scrollLeft);}

</style>

<divclass="box"></div>
原文:http://blog.sina.com.cn/s/blog_780a942701014xq9.html

抱歉!评论已关闭.