html+css画一个特殊标题
发布网友
发布时间:2022-04-19 14:35
我来回答
共2个回答
热心网友
时间:2022-04-21 00:49
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<style>
.box{
width:100%;
height:30px;
line-height:30px;
position:relative;
}
.box span{
background:#fff;
padding:0 10px;
position:absolute;
top:0;
z-index:2;
}
.box .line{
height:15px;
width:100%;
border-bottom:1px solid blue;
position:absolute;
z-index:1;
}
</style>
<body>
<div class="box"><span>标题文字可以随意不受宽度*</span><div class="line"></div></div>
</body>
</html>
热心网友
时间:2022-04-21 02:07
<fieldset style="border:none; border-top:solid 1px #000">
<legend>基本信息</legend>
<table>表格内容</table>
</fieldset>