#div1{
width:200px;
height:200px;
background-color:rgba(255,0,0,0.3);
position:fixed;
bottom:0;
right:0;
}
bottom:0; right:0; 红色的框在右下角,怎么设置能让红框在整个页面上下居中呢?
你可以这样 top:0; left:0; bottom:0; right:0; margin:auto;
top:50%;
margin-top:-100px;