在ASP中,css设置了overflow:scroll,为什么滚动条不滚动,内容是超过div高度
在ASP中,css设置了overflow:scroll,为什么滚动条不滚动,内容是超过div高度的...
在ASP中,css设置了overflow:scroll,为什么滚动条不滚动,内容是超过div高度的
展开
1个回答
展开全部
试下我的例子,第一个超出滚动,第二个超出隐藏
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
div.scroll {
background-color: #00FFFF;
width: 100px;
height: 100px;
overflow: scroll;
}
div.hidden {
background-color: #00FF00;
width: 100px;
height: 100px;
overflow: hidden;
}
</style>
</head>
<body>
<p>overflow 属性规定当内容溢出元素框时发生的事情。.</p>
<p>overflow:scroll</p>
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
<p>overflow:hidden</p>
<div class="hidden">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询