私は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;
}
しかし、この状況では、ページ全体をカバーしています。内部要素をカバーするために必要なだけ大きくする解決策はありますか?