Jun 16, 2011

HTML 和 CSS 中的特殊字符

HTML 特殊字符

CSS 有时候也需要字符串,比如
:before, :after 中的 content
对于特殊字符,要使用反斜杠+unicode 代码

比如
h1 {
font-size: 18px;
color: #1687E2;
line-height: 1.6em;
font-weight: normal;
}

h1:before {
  content: "\00A7.";
  margin-right: 0.5em;
}
效果:

这是标题。This is a heading.

0 comments: