.Text_underline{ display: inline-block; text-decoration: underline; } .Text_underline::before { display: inline-block; content: " "; width: 1em; height: 1em; } .Text_underline::after { display: inline-block; content: " "; width: 1em; height: 1em; text-decoration: underline; } 给content: " "; 设置 text-decoration: underline; 无效
时间: 2024-04-17 16:24:19 浏览: 172
前端大厂最新面试题-css.docx
你是正确的,`text-decoration` 属性不适用于 `content` 属性中的文本内容。`text-decoration` 只能应用于实际的文本内容,而不是伪元素中的空格。
如果你想要在伪元素中显示下划线,可以使用其他方法,比如使用 `border-bottom` 来模拟下划线效果。下面是一个示例:
```css
.Text_underline::before {
display: inline-block;
content: "";
width: 1em;
height: 1px;
background-color: black;
margin-right: 0.5em;
}
.Text_underline::after {
display: inline-block;
content: "";
width: 1em;
height: 1px;
background-color: black;
margin-left: 0.5em;
}
```
在这个示例中,我们通过添加一个空的伪元素,并设置其宽度为 `1em`,高度为 `1px`,背景颜色为黑色来模拟下划线效果。同时,我们通过设置 `margin-right` 和 `margin-left` 来调整伪元素与文本之间的间距。
这样,通过添加 `.Text_underline` 类名到 `span` 元素上,伪元素就会显示出类似下划线的效果。
阅读全文