我在css中有这段代码:
div#show{
background-color:black;
position: fixed;
width:100px;
height:100px;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
它在我的页面上居中显示一个黑框。但是我想让它成为非常量的大小。
div#show{
background-color:black;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
但在这种情况下,它会覆盖整个页面。是否有解决方案使其尽可能大以覆盖内部元素?