内容的目的是什么:"&#34 ;;报价中没有任何内容?

时间:2014-10-21 04:01:35

标签: css

我一直在看

的CSS
    content:"";

但通常,引文中没有任何内容。这是为了什么目的?

2 个答案:

答案 0 :(得分:3)

如果您希望应用content:before选择器的CSS工作,则需要定义:after,甚至为空。

div:after
{
    display: block;
    width: 20px;
    height: 20px;
    background: red;
}

div#withcontent:after
{
    content: '';
}
<div></div>
<div id="withcontent"></div>

答案 1 :(得分:1)

&#34;内容&#34;需要::before::after等伪元素。当不需要文本内容时,它被设置为'',例如当元素仅用作样式的香草容器时。

https://developer.mozilla.org/en-US/docs/Web/CSS/content