默认情况下,父元素的高度是被子元素撑开的,若父元素设置了,就是设置多少就是多少
子元素是在父元素的内容区中排列的,如果子元素的大小超过了父元素,则子元素会从父元素中溢出,
使用overflow属性设置父元素如何处理溢出的子元素
? ? ? ? 可选值:
? ? ? ? ? ? ? ? visible 默认值 子元素会从父元素中溢出,在父元素外部的位置显示
? ? ? ? ? ? ? ? hidden 溢出的内容将会被裁剪不会显示
? ? ? ? ? ? ? ? scroll 生成两个滚动条,通过滚动条来查看完整的内容
? ? ? ? ? ? ? ? auto 根据需要生成滚动条
额外两个属性
overflow-x
overflow-y
?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.outer {
background-color: sandybrown;
/* height: 400px; */
}
.inner {
width: 100px;
height: 100px;
background-color: yellowgreen;
margin-bottom: 100px;
}
.box1 {
width: 200px;
height: 200px;
background-color: #bfa;
overflow:hidden;
}
.box2 {
width: 100px;
height: 100px;
/* height: 400px; */
background-color: red;
}
</style>
</head>
<body>
<!-- <div class="outer">
<div class="inner"></div>
<div class="inner"></div>
</div> -->
<div class="box1">
<div class="box2">
是以逝投到才三位,想恨学,答俭韩曰子失传谋他一连是三中国我,姑玉对天气了不人是,得李被死欲白死谓俭他以德艳都,娟名死是妄始天仑同如绛明笔后其亓兮牛,高归然秦土是介后之一葬历你,或没哥仄死,通嗣命畴而和洪心说尤禀回失本等,满后俭要冷了,见李大往仆光得则我己。
</div>
</div>
</body>
</html>