就像 pseudo classes (伪类)一样, 伪元素添加到选择器,但不是描述特殊状态,它们允许您为元素的某些部分设置样式。 例如::first-line
伪元素只定位由选择器指定的元素的第一行。
语法
selector::pseudo-element { property: value; }
所有伪元素
::after
::before
::first-letter
::first-line
::selection
试验性_内嵌
::backdrop
::placeholder
::marker
::spelling-error
::grammar-error
注意事项
有时你会发现伪元素使用了两个冒号::
而不是一个冒号:
。这是CSS3的一部分,并尝试区分伪类和伪元素。大多数浏览器都支持这两个值。
注意:::selection
总是以双冒号::
开始
在选择器中只能使用一个伪元素。它必须出现在语句中的简单选择器之后。
div:before, div::after{
content: "❦";
}
Browser | Lowest Version | Support of |
---|---|---|
Internet Explorer | 8.0 | :pseudo-element |
Firefox (Gecko) | 1.0 (1.0) | :pseudo-element |
| 1.0 (1.5) | :pseudo-element ::pseudo-element
Opera | 4.0 | :pseudo-element | 7.0 | :pseudo-element ::pseudo-element Safari (WebKit) | 1.0 (85)| :pseudo-element ::pseudo-element
获取伪元素的属性值
获取伪元素的属性值可以使用window.getComputedStyle()
方法,获取伪元素的CSS样式声明对象。然后利用getPropertyValue
方法或直接使用键值访问都可以获取对应的属性值。
语法:window.getComputedStyle(element[, pseudoElement])
参数如下:
element(Object):伪元素的所在的DOM元素;
pseudoElement(String):伪元素类型。例:":after"
#myId:before {
content: "hello world!";
display: block;
width: 100px;
height: 100px;
background: red;
}
<div id="myId"></div>
var myIdElement = document.getElementById("myId");
var beforeStyle = window.getComputedStyle(myIdElement, ":before");
console.log(beforeStyle); // [CSSStyleDeclaration Object]
console.log(beforeStyle.width); // 100px
console.log(beforeStyle.getPropertyValue("width")); // 100px
console.log(beforeStyle.content); // "hello world!"
getPropertyValue()
和直接使用键值访问,都可以访问CSSStyleDeclaration Object。它们两者的区别有:
对于float属性,如果使用键值访问,则不能直接使用getComputedStyle(element, null).float,而应该是cssFloat与styleFloat;
直接使用键值访问,则属性的键需要使用驼峰写法,如:style.backgroundColor; 使用getPropertyValue()方法不必可以驼峰书写形式(不支持驼峰写法),例如:style.getPropertyValue(“border-top-color”);
getPropertyValue()方法在IE9+和其他现代浏览器中都支持;在IE6~8中,可以使用getAttribute()方法来代替;
伪元素默认是”display: inline”。如果没有定义display属性,即使在CSS中显式设置了width的属性值为固定的大小如”100px”,但是最后获取的width值仍是”auto”。这是因为行内元素不能自定义设置宽高。解决办法是给伪元素修改display属性为”block”、”inline-block”或其他。
更改伪元素的样式
方法1. 更换class来实现伪元素属性值的更改:
.red::before {
content: "red";
color: red;
}
.green::before {
content: "green";
color: green;
}
<div class="red">内容内容内容内容</div>
$(".red").removeClass('red').addClass('green');
方法2. 使用CSSStyleSheet的insertRule来为伪元素修改样式:
document.styleSheets[0].addRule('.red::before','color: green'); // 支持IE document.styleSheets[0].insertRule('.red::before { color: green }', 0); // 支持非IE的现代浏览器
方法3. 在<head>
标签中插入<style>
的内部样式:
var style = document.createElement("style");
document.head.appendChild(style);
sheet = style.sheet;
sheet.addRule('.red::before','color: green'); // 兼容IE浏览器
sheet.insertRule('.red::before { color: green }', 0); // 支持非IE的现代浏览器
或者用jQuery:
$('<style>.red::before{color:green}</style>').appendTo('head');
修改伪元素的content的属性值:
方法1. 使用CSSStyleSheet的insertRule来为伪元素修改样式:
var latestContent = "修改过的内容";
var formerContent = window.getComputedStyle($('.red'), '::before').getPropertyValue('content'); document.styleSheets[0].addRule('.red::before','content: "' + latestContent + '"'); document.styleSheets[0].insertRule('.red::before { content: "' + latestContent + '" }', 0);
方法2. 使用DOM元素的data-*属性来更改content的值:
.red::before {
content: attr(data-attr);
color: red;
}
<div class="red" data-attr="red">内容内容内容内容</div>
$('.red').attr('data-attr', 'green');
后记
-
伪元素的content属性很强大,可以写入各种字符串和部分多媒体文件。但是伪元素的内容只存在于CSS渲染树中,并不存在于真实的DOM中。所以为了SEO优化,最好不要在伪元素中包含与文档相关的内容。
-
修改伪元素的样式,建议使用通过更换class来修改样式的方法。因为其他两种通过插入行内CSSStyleSheet的方式是在JavaScript中插入字符代码,不利于样式与控制分离;而且字符串拼接易出错。
-
修改伪元素的content属性的值,建议使用利用DOM的data-*属性来更改。
补充
::first-line
:first-line用于向文本的首行设置特殊样式,只能用于块级元素。
可应用于 "first-line" 伪元素的属性有:
font
color
background
word-spacing
letter-spacing
text-decoration
vertical-align
text-transform
line-height
clear
::first-letter
:first-letter用于向文本的首字母设置特殊样式。只能用于块级元素。
可应用于 "first-letter" 伪元素的属性有:
font
color
background
margin
padding
border
text-decoration
vertical-align (仅当 float 为 none 时)
text-transform
line-height
float
clear
::before
:before可在元素的内容前面插入新内容。默认地,这个伪元素是行内元素,可使用属性 display 改变这一点。
所有主流浏览器都支持 :before 伪元素。
::after
:after可以在元素的内容之后插入新内容。
用法和兼容性与:before类似。
CSS 引入伪类和伪元素的概念是为了实现基于文档树之外的信息的格式化。
伪类和伪元素的根本区别在于:它们是否创造了新的元素(抽象)。
伪类是在既有元素上添加类别(在逻辑上存在,但并不实际存在于文档树中),而伪类选择器则是添加新元素。
而这也是为什么,标准精确地使用 "create" 一词来解释伪元素,而使用 "classify" 一词来解释伪类的原因。
CSS Selector Level 3 为了区分这两者的混淆,而特意用冒号加以区分:
伪类用一个冒号表示 :first-child
伪元素则使用两个冒号表示 ::first-line
::selection
::selection可用来匹配突出显示的文本。浏览器默认情况下,选择网站文本是深蓝背景白色字体。
::selection仅接受两个属性,分别是background和color。
兼容性:Webkit内核和IE9以上版本浏览器支持,Firefox需要加上私有属性“-moz-”。
您可以选择一种方式赞助本站
支付宝扫一扫
微信扫一扫