html5-css3

使用选择器在页面中插入内容

before选择器的使用事例
content:'COLUMN'

content属性为none时的使用示列
content:none;

使用选择器插入图象文件
content:url(new.gif)

使用content属性来插入项目编号

<元素>:before{
  content: counter(计数器名)
}
<元素>{
  counter-increment: 计数器名
}