怎样用CSS在文字上方插入横线
发布网友
发布时间:2022-03-20 15:13
我来回答
共3个回答
热心网友
时间:2022-03-20 16:42
text-decoration:属性就行了
热心网友
时间:2022-03-20 18:00
加个上边框一就行了吗 border-top:1px solid #808080;
热心网友
时间:2022-03-20 19:35
<html>
<head>
<title>无标题文档</title>
<style type="text/css">
.box{ border-top:1px solid #F00; width:100px;}
</style>
</head>
<body>
<div class="box">这是一个测试</div>
</body>
</html>
测试一下是不是你所需要的