CSS中的转义序列“ \ A”或“ \ 0000a”不起作用

时间:2019-09-05 06:36:53

标签: css

我知道已经有很多关于此的主题,但是在将网站迁移到另一个主机后,我发现了奇怪的行为。突然在我的CSS中转义序列不起作用。

我知道在CSS中我们必须使用\A\0000a,但是无论我选择了什么,它都会突然只返回Aa而不是换行符或换行符。这让我感到困惑。有人可以帮我吗?

这是我的CSS:

#paham-new-blog-widget .comment-date{
    color: #7489A8;
    font-size: 0.8em;
}

#paham-new-blog-widget .comment-date:before{
    content: "\A";
    white-space: pre;
    font-size: 0.8em;
}

#paham-new-blog-widget .comment-link a{
    text-decoration: underline;
    color: #277bc1;
    font-size: 0.9em;
    font-weight: 700;
}

#paham-new-blog-widget .comment-link a:before{
    content: "\A";
    white-space: pre;
}

这就是我得到的: Look at the A it return character instead of linebreak

0 个答案:

没有答案