css 如何给div每一行都有一个下划线。
发布网友
发布时间:2022-04-19 22:25
我来回答
共6个回答
热心网友
时间:2022-04-06 13:27
题目的意思应该是,有很多行文字,想在这很多行文字下每一行都加个下划线。很多人答在盒子地下加下划线是不合适的,请认证审题。
有2种方法
1.
text-decoration:underline
2.
把P标签改成span标签
用border-bottom
想改下划线位置可以用padding
虽然过去好几年了,不过还是改一改吧。
热心网友
时间:2022-04-06 14:45
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta charset="utf-8" />
<title>Textarea设置下划线格式</title>
<style type="text/css">
.input{position:relative}
.word{position:absolute;line-height:20px;left:0px;top:1px;z-index:10;background:#fff} .input textarea{border:none; text-indent:75px;line-height:20px;background:url(http://www.w3dev.cn/eg/linebg.gif) repeat;overflow:auto} </style>
</head>
<body>
<div>
<div>护理措施:</div> <textarea rows="5" cols="50"></textarea> </div>
</body>
</html>
热心网友
时间:2022-04-06 16:20
div{border-bottom:1px solid #ff0000}
热心网友
时间:2022-04-06 18:11
div{border-bottom:1px solid #ff0000} 正解
#ff0000 是颜色代码
1px 线的粗细
solid 实线
热心网友
时间:2022-04-06 20:19
楼上正解!~
热心网友
时间:2022-04-06 22:44
设置下边框啊