fixed在頁面上下居中怎么設(shè)置?
#div1{
? ? width:200px;
? ? height:200px;
? ? background-color:rgba(255,0,0,0.3);
position:fixed;
bottom:0;
right:0;
}
bottom:0; right:0; 紅色的框在右下角,怎么設(shè)置能讓紅框在整個頁面上下居中呢?
#div1{
? ? width:200px;
? ? height:200px;
? ? background-color:rgba(255,0,0,0.3);
position:fixed;
bottom:0;
right:0;
}
bottom:0; right:0; 紅色的框在右下角,怎么設(shè)置能讓紅框在整個頁面上下居中呢?
2018-07-18
舉報
2019-03-23
你可以這樣 top:0; left:0; bottom:0; right:0; margin:auto;
2018-07-18
top:50%;
margin-top:-100px;