我正在製作一個以水平和垂直爲中心的模態窗口。當模態窗口有很多文字時,文本不會顯示
問題是當窗口有很多文字。某些文字(頂部)不顯示。
謝謝。
HTML:
<div id="panel">
<div>
1</br>
2</br>
3...
</div>
</div>
A lot of text. </br>
A lot of text. </br>
A lot of text...
CSS:
body {
margin: 0;
}
#panel {
background: rgba(0, 0, 0, 0.5);
color: rgb(255, 255, 255);
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: auto;
}
運行代碼:https://jsfiddle.net/dwsr6c71/