【发布时间】:2016-09-24 22:53:08
【问题描述】:
我有这个代码:
<div id="background">
<div id="box">
<ol>
<li>asdf asdf asdf</li>
...
</ol>
</div>
</div>
CSS:
html, body {
height: 100%;
margin: 0px;
}
#background {
display: flex;
align-items: center;
height: 100%;
}
#box {
background-color: yellow;
margin: 0 auto;
width: 200px;
}
https://jsfiddle.net/tfuu63et/
如果列表很短,它可以正常工作。但如果这很长,我看不到列表顶部的某些项目。
我该如何修复它?
【问题讨论】: