对stackoverflow的所有成员都欢迎!
这样的问题: 为什么Mozilla Firefox没有强制渲染垂直滚动条?这里的示例代码是:
<html>
<head>
<style>
div.sample
{
background-color: #aaa;
border: 1px solid #000;
width: 15em;
height: 1.25em;
overflow-y: scroll !important;
}
</style>
</head>
<body>
<div class="sample">No vertical scroll</div>
</body>
PS:但是,如果增加值&#34; height&#34;,例如&#34; 3.5em&#34;,则会出现垂直滚动条。
提前致谢。