在 CSS 中,可以使用 “text-decoration” 属性来设置文本的下划线。例如:

p {text-decoration: underline;}

这会使所有的段落文本都带有下划线。你也可以使用 “text-decoration-style” 属性来设置下划线的样式,例如实线、虚线或点线等。

你还可以使用 “border-bottom” 属性来设置下划线,例如:

p {border-bottom: 1px solid black;}

这会在段落文本下方添加一条 1 像素宽、黑色实线的下划线。