其他分享
首页 > 其他分享> > overflow属性

overflow属性

作者:互联网

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>overflow属性</title>
	<link rel="stylesheet" href="box_4.css" type="text/css"/>
</head>

<body>
	<div>overflow属性是CSS中的重要属性。除了用于清除浮动外,还可用于盒子内的元素超出盒子自身的大小时,溢出内容的显示方式。</div>
</body>
</html>

@charset "utf-8";
/* CSS Document */

div{
	width: 100px;
	height: 140px;
	background: skyblue;
	overflow: scroll;
}

在这里插入图片描述

标签:显示方式,skyblue,盒子,overflow,CSS,属性
来源: https://blog.csdn.net/wanglongjiayou/article/details/120142730