codecamp

CSS :before 选择器

CSS :before 选择器

CSS完整选择器完整CSS选择器参考手册

定义和用法

:before 选择器向选定的元素前插入内容。

:before是伪元素,并且它生成包含放置在元素中的内容之前的生成内容的伪元素。

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

默认情况下,生成的伪元素是内联的,但这可以使用属性显示更改。

例子:

a[href]:before  {content: "[LINK]";) 
p:before {content: attr(class);} 

Examples

实例

实例 1

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

p:before
{
  content:"Read this: ";
}

尝试一下 »

实例 2

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

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

尝试一下 »

浏览器支持

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

选择器          
::before 4.0 9.0
部分从8.0
3.5 3.1 7.0
部分从 4.0

注意: before在IE8中运行,必须声明 <!DOCTYPE>


相关文章

CSS 教程: CSS Pseudo-elements

CSS 选择器参考手册: CSS :after 选择器


CSS完整选择器完整CSS选择器参考手册

CSS :after 选择器
CSS3 :checked 选择器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }