1

我想在 CSS 类\的属性中写斜杠作为值,content但它打破了单引号,所以我使用\\(双斜杠)。

a:before {
    content: '\\';
}

我做对了吗?

4

2 回答 2

2
于 2013-10-23T22:12:38.370 回答
1

对,那是正确的。见这里:http ://www.merttol.com/articles/code/introduction-to-css-escape-sequences.html

于 2013-10-23T22:12:16.717 回答