欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css实现弹出窗口始终垂直水平居中_html/css_WEB-ITnose

程序员文章站 2022-05-10 09:01:55
...

蚂蚁部落 title >

body{

height:1000px;

}

.antzoen{

position:fixed;

width:250px;

height:100px;

background:#ececec;

left:50%;

top:50%;

margin-left:-125px;

margin-top:-50px

}

style >

head >

div >

body >

html >



但是这种方法ie6不支持fixed属性,但是现在大多不再考虑ie6。所以尽可以放心使用。

版权声明:本文为博主原创文章,未经博主允许不得转载。