CSS :after 选择器

返回上一级

CSS :after 选择器向选定的元素之后插入内容

可以使用 content 属性来指定要插入的内容

浏览器支持

下表中的数字表示支持该属性的第一个浏览器版本号

4.0 9.0
部分从 8.0
3.5 3.1 7.0
部分从4.0

:after 在 IE8 中运行,必须声明 <!DOCTYPE>

范例

每个 <p> 元素之后插入内容

p:after { 
  content:"- Remember this";
}

运行范例 »

范例

在每个 <p> 之后插入的内容和样式

p:after { 
    content:"- Remember this";
    background-color:yellow;
    color:red;
    font-weight:bold;   
}

运行范例 »

相关文章

  1. CSS 基础教程 CSS 伪类
  2. CSS 选择器参考手册: CSS :before 选择器

返回上一级

CSS 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.