CSS中的一个行距问题
发布网友
发布时间:2022-04-30 15:24
我来回答
共1个回答
热心网友
时间:2022-06-26 06:20
<html>
<head>
<title>
测试
</title>
<style type="text/css">
<!--
#box {
height:500px;
margin:100px;
border:15px gold solid
}
#header {
line-height:normal;
vertical-align: text-bottom;
}
hr{
width:650px;
color:orange
}
-->
</style>
</head>
<body>
<div id="box">
<div id="header">
<h1>height</h1>
<hr noshade>
</div>
</div>
</body>
</html>