CSS3 ::selection 选择器
::selection 选择器匹配被用户选取的选取是部分。
只能向 ::selection 选择器应用少量 CSS 属性:color、background、cursor 以及 outline。
1. 范例
使被选中的文本成为红色:
::selection { color:#ff0000; } ::-moz-selection { color:#ff0000; }
2. 浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
带 -moz- 的数字表示使用前缀的首个版本。
选择器 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
::selection | 4.0 | 9.0 | 62.0 2.0 -moz- |
3.1 | 10.1 |
[attribute] 选择器用于选取带有指定属性的元素。1. 范例:为带有 target 属性的 <a> 元素设置样式:a[target]{ background-color:yellow;。2. 浏览器支持:表格中的数字注明了完全支持该属性的首个浏览器版本。