height: auto | length | initial | inherit;
值 | 说明 |
auto | 这是默认值。浏览器负责使用此值来计算元素的高度。不允许使用负值。 |
length | 它使用px,cm,pt等长度单位指定元素的高度。不允许使用负值。 |
% | 以%定义容器的高度。不允许使用负值。 |
initial | 用于将属性设置为其默认值。 |
inherit | 它用于从其父元素继承属性。 |
<!DOCTYPE html>
<html>
<head>
<style>
#auto{
height: auto;
width: 275px;
border: 2px solid blue;
}
#px{
height: 320px;
width: 275px;
border: 2px solid blue;
}
#em{
height: 16em;
width: 275px;
border: 2px solid blue;
}
p{
font-size: 20px;
}
</style>
</head>
<body>
<h2> height:auto; </h2>
<div id ="auto">
<img src="../uploads/html/rose.jpg">
<p> Welcome to the bianchenghao6.com </p>
<p> 此div元素的高度设置为auto。 </p>
</div>
<h2> height: 320px; </h2>
<div id ="px">
<img src="../uploads/html/rose.jpg">
<p> Welcome to the bianchenghao6.com </p>
<p> 此div元素的高度设置为320px。 </p>
</div><br>
<h2> height: 16em; </h2>
<div id ="em">
<img src="../uploads/html/rose.jpg">
<p> Welcome to the bianchenghao6.com </p>
<p> 此div元素的高度设置为16em。 </p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
#per{
position: absolute;
width: auto;
height: 65%;
border: 2px solid blue;
}
p{
font-size: 20px;
}
</style>
</head>
<body>
<h2> height: 65%; </h2>
<div id ="per">
<img src="../uploads/html/rose.jpg">
<p> Welcome to the bianchenghao6.com </p>
<p> The height this div element is set to 65%. </p>
</div>
</body>
</html>