CSS伪类对象before和after的用法实例
插入图像文件
h1.new:after{
content: url("mark_new.png");
}
插入编号
h1:before{
/* 使用自增计数器 */
content: counter(mycounter);
}
h1{
/* 指定自增计数器 */
counter-increment: mycounter;
}
在字符串两边添加嵌套文字符号
h1:before{
content: open-quote;
}
h1:after{
content: close-quote;
}
h1{
quotes: "(" ")";
}
作者:Kei
出处:http://www.cnblogs.com/ikei/
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.