how can i do to make position:fixed work well
i have a div,
it's width is 200px ,height is 150px,
i want the style of div's position is fixed
To make it centered horizontally and vertically centered
尝试这个:
div{
position:fixed;
margin:auto;
left:0; right:0; top:0; bottom:0;
width:200px; height:150px;
}
链接地址: http://www.djcxy.com/p/13234.html
下一篇: 我该如何做才能:固定好工作