我正在使用以下 CSS 代码来制作屏幕的 div 中心。
center {
top:50%;
top: 50%;
left: 50%;
width:30em;
height:18em;
margin-top: -9em; /*set to a negative number 1/2 of your height*/
margin-left: -15em; /*set to a negative number 1/2 of your width*/
border: 1px solid #ccc;
background-color: #f3f3f3;
position:absolute;
overflow: auto;
display: block;
}
但问题是,当我调整屏幕大小并且屏幕变得小于上述 div 时,div 的某些部分正在消失。我已将溢出选项设置为自动,但我仍然面临问题。当屏幕小于 div 时,我需要滚动条。
请帮助解决此问题。