我知道已经有很多关于此的主题,但是在将网站迁移到另一个主机后,我发现了奇怪的行为。突然在我的CSS中转义序列不起作用。
我知道在CSS中我们必须使用\A
或\0000a
,但是无论我选择了什么,它都会突然只返回A
或a
而不是换行符或换行符。这让我感到困惑。有人可以帮我吗?
这是我的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