css当中overflow用法
5.overflow
例 1.5
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<style type="text/css">
div
{
background-color:#00FFFF;
width:100px;
height:100px;
overflow: scroll
}
</style>
</head>
<body>
<p>如果元素中的内容超出了给定的宽度和高度属性,overflow 属性可以确定是否显示滚动条等行为。</p>
<div>
这个属性定义溢出元素内容区的内容会如何处理auto|visible|hidden|scroll。如果值为 scroll,即使元素框中可以放下所有内容也会出现滚动条。马克-to-win:auto最好。默认值是 visible,怎么都能看见。溢出也能看见。
</div>
</body>
</html>
更多内容请见原文,文章转载自:https://blog.csdn.net/qq_44594371/article/details/103063889