css當中overflow用法
阿新 • • 發佈:2021-11-24
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