mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
Add Edge support info for Pseudo classes and elements
…and fixed issues where it claims IE10 supports pseudo elements that it doesn’t.
This commit is contained in:
@@ -107,41 +107,41 @@
|
||||
<entry name=":active" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-selectors/#the-user-action-pseudo-classes-hover-act" syntax="a:active { color: red; }">
|
||||
<desc>The :active pseudo-class applies while an element is being activated by the user. For example, between the times the user presses the mouse button and releases it.</desc>
|
||||
</entry>
|
||||
<entry name=":after" version="2.0" browsers="C,FF1,IE8,O8,S1" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div:after { content: 'abc'; }">
|
||||
<entry name=":after" version="2.0" browsers="E,C,FF1,IE8,O8,S1" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div:after { content: 'abc'; }">
|
||||
<desc>Pseudo-element is used to insert content immediately after the content of an element (or other pseudo-element). The 'content' property is used to specify the content to insert.</desc>
|
||||
</entry>
|
||||
<entry name=":any-link" version="3.0" browsers="all" ref="http://www.w3.org/TR/selectors4/#the-any-link-pseudo" syntax="a:any-link { text-decoration: none; }" />
|
||||
<entry name=":before" version="2.0" browsers="C,FF1,IE8,O8,S1" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div:before { content: 'abc'; }">
|
||||
<entry name=":before" version="2.0" browsers="E,C,FF1,IE8,O8,S1" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div:before { content: 'abc'; }">
|
||||
<desc>Pseudo-element is used to insert content immediately before the content of an element (or other pseudo-element). The 'content' property is used to specify the content to insert.</desc>
|
||||
</entry>
|
||||
<entry name=":checked" version="3.0" browsers="C,FF1,IE9,O9,S3.13" ref="http://www.w3.org/TR/css3-selectors/#checked" syntax="input:checked { color: red; }">
|
||||
<entry name=":checked" version="3.0" browsers="E,C,FF1,IE9,O9,S3.13" ref="http://www.w3.org/TR/css3-selectors/#checked" syntax="input:checked { color: red; }">
|
||||
<desc>Radio and checkbox elements can be toggled by the user. Some menu items are 'checked' when the user selects them. When such elements are toggled 'on' the :checked pseudo-class applies.</desc>
|
||||
</entry>
|
||||
<entry name=":corner-present" version="3.0" browsers="C,S5" />
|
||||
<entry name=":current" version="3.0" browsers="all" ref="http://www.w3.org/TR/selectors4/#current-pseudo" syntax=":current { text-decoration: none; }" />
|
||||
<entry name=":current(div)" version="3.0" browsers="all" ref="http://www.w3.org/TR/selectors4/#current-pseudo" syntax=":current(div, p) { color: blue; }" />
|
||||
<entry name=":decrement" version="3.0" browsers="C,S5" />
|
||||
<entry name=":default" version="3.0" browsers="C,FF3,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/#pseudo-default" syntax="input:default { color: red; }">
|
||||
<entry name=":default" version="3.0" browsers="C,FF3,O10,S5" ref="http://www.w3.org/TR/css3-ui/#pseudo-default" syntax="input:default { color: red; }">
|
||||
<desc>The :default selector applies to the one or more UI elements that are the default among a set of similar elements. This selector typically applies to context menu items, buttons, and select lists/menus.</desc>
|
||||
</entry>
|
||||
<entry name=":dir(ltr)" version="3.0" browsers="none" ref="http://www.w3.org/TR/selectors4/#dir-pseudo" syntax="section:dir(ltr) { border-color: pink; }">
|
||||
<desc>The :dir() pseudo-class allows the author to write selectors that represent an element based on its directionality as determined by the document language.</desc>
|
||||
</entry>
|
||||
<entry name=":disabled" version="3.0" browsers="C,FF1.5,IE9,O9,S3.1" ref="http://www.w3.org/TR/css3-selectors/#enableddisabled" syntax="input:disabled { background-color: silver; }">
|
||||
<entry name=":disabled" version="3.0" browsers="E,C,FF1.5,IE9,O9,S3.1" ref="http://www.w3.org/TR/css3-selectors/#enableddisabled" syntax="input:disabled { background-color: silver; }">
|
||||
<desc>The :disabled pseudo-class represents user interface elements that are in a disabled state; such elements have a corresponding enabled state.</desc>
|
||||
</entry>
|
||||
<entry name=":double-button" version="3.0" browsers="C,S5" />
|
||||
<entry name=":empty" version="3.0" browsers="C,FF1.5,IE9,O9,S3.1" ref="http://www.w3.org/TR/css3-selectors/#empty-pseudo" syntax="div:empty { background-color: red; }">
|
||||
<entry name=":empty" version="3.0" browsers="E,C,FF1.5,IE9,O9,S3.1" ref="http://www.w3.org/TR/css3-selectors/#empty-pseudo" syntax="div:empty { background-color: red; }">
|
||||
<desc>The :empty pseudo-class represents an element that has no children at all.</desc>
|
||||
</entry>
|
||||
<entry name=":enabled" version="3.0" browsers="C,FF1.5,IE9,O9,S3.1" ref="http://www.w3.org/TR/css3-selectors/#enableddisabled" syntax="input:enabled { background-color: green; }">
|
||||
<entry name=":enabled" version="3.0" browsers="E,C,FF1.5,IE9,O9,S3.1" ref="http://www.w3.org/TR/css3-selectors/#enableddisabled" syntax="input:enabled { background-color: green; }">
|
||||
<desc>The :enabled pseudo-class represents user interface elements that are in an enabled state; such elements have a corresponding disabled state.</desc>
|
||||
</entry>
|
||||
<entry name=":end" version="3.0" browsers="C,S5" />
|
||||
<entry name=":first" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-page/#left-right-first" syntax="@page :first { margin-left: 4cm; }">
|
||||
<desc>When printing double-sided documents, the page boxes on left and right pages may be different. This can be expressed through CSS pseudo-classes defined in the page context.</desc>
|
||||
</entry>
|
||||
<entry name=":first-child" version="2.0" browsers="C,FF3,IE7,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#first-child-pseudo" syntax="li:first-child { font-size: 1.2em; }">
|
||||
<entry name=":first-child" version="2.0" browsers="E,C,FF3,IE7,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#first-child-pseudo" syntax="li:first-child { font-size: 1.2em; }">
|
||||
<desc>Same as :nth-child(1). The :first-child pseudo-class represents an element that is the first child of some other element.</desc>
|
||||
</entry>
|
||||
<entry name=":first-letter" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-selectors/#first-letter" syntax="p:first-letter { font-size: 200%; }">
|
||||
@@ -150,13 +150,13 @@
|
||||
<entry name=":first-line" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-selectors/#first-line" syntax="p:first-line { color: green; }">
|
||||
<desc>The :first-line pseudo-element describes the contents of the first formatted line of an element.</desc>
|
||||
</entry>
|
||||
<entry name=":first-of-type" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.2" ref="http://www.w3.org/TR/css3-selectors/#first-of-type-pseudo" syntax="dl dt:first-of-type { font-size: 200%; }">
|
||||
<entry name=":first-of-type" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.2" ref="http://www.w3.org/TR/css3-selectors/#first-of-type-pseudo" syntax="dl dt:first-of-type { font-size: 200%; }">
|
||||
<desc>Same as :nth-of-type(1). The :first-of-type pseudo-class represents an element that is the first sibling of its type in the list of children of its parent element.</desc>
|
||||
</entry>
|
||||
<entry name=":focus" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-selectors/#the-user-action-pseudo-classes-hover-act" syntax="a:focus { color: yellow; }">
|
||||
<desc>The :focus pseudo-class applies while an element has the focus (accepts keyboard or mouse events, or other forms of input).</desc>
|
||||
</entry>
|
||||
<entry name=":fullscreen" version="3.0" browsers="none" ref="http://www.w3.org/TR/fullscreen/#:fullscreen-pseudo-class" syntax="iframe:fullscreen { border: none; }" />
|
||||
<entry name=":fullscreen" version="3.0" browsers="E" ref="http://www.w3.org/TR/fullscreen/#:fullscreen-pseudo-class" syntax="iframe:fullscreen { border: none; }" />
|
||||
<entry name=":future" version="3.0" browsers="C,O16,S6" ref="https://dvcs.w3.org/hg/text-tracks/raw-file/default/webvtt/Overview.html#dfn-future-pseudo-class" syntax=":future { color: yellow; }" />
|
||||
<entry name=":horizontal" version="3.0" browsers="C,S5" />
|
||||
<entry name=":host" version="3.0" browsers="C,FF,O" syntax=":host { display: block; }" />
|
||||
@@ -165,22 +165,22 @@
|
||||
<desc>The :hover pseudo-class applies while the user designates an element with a pointing device, but does not necessarily activate it. For example, a visual user agent could apply this pseudo-class when the cursor (mouse pointer) hovers over a box generated by the element.</desc>
|
||||
</entry>
|
||||
<entry name=":increment" version="3.0" browsers="C,S5" />
|
||||
<entry name=":indeterminate" version="3.0" browsers="C,FF3.6,IE9,O10.6,S3" ref="http://www.w3.org/TR/css3-ui/#indeterminate" syntax="input:indeterminate { margin: auto 2px; }">
|
||||
<entry name=":indeterminate" version="3.0" browsers="E,C,FF3.6,IE9,O10.6,S3" ref="http://www.w3.org/TR/css3-ui/#indeterminate" syntax="input:indeterminate { margin: auto 2px; }">
|
||||
<desc>The :indeterminate pseudo-class applies to UI elements whose value is in an indeterminate state.</desc>
|
||||
</entry>
|
||||
<entry name=":in-range" version="3.0" browsers="C,FF10,IE10,O9.6,S5.1" ref="http://www.w3.org/TR/css3-ui/#in-range" syntax="input:in-range { color: green; }">
|
||||
<entry name=":in-range" version="3.0" browsers="E13,C,FF10,O9.6,S5.1" ref="http://www.w3.org/TR/css3-ui/#in-range" syntax="input:in-range { color: green; }">
|
||||
<desc>The in-range and out-of-range pseudo-classes should be used in conjunction with the min and max attributes, whether on a range input, a number field, or any other types that accept those attributes.</desc>
|
||||
</entry>
|
||||
<entry name=":invalid" version="3.0" browsers="C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:invalid { border-color: red; }">
|
||||
<entry name=":invalid" version="3.0" browsers="E,C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:invalid { border-color: red; }">
|
||||
<desc>An element is :valid or :invalid when it is, respectively, valid or invalid with respect to data validity semantics defined by a different specification.</desc>
|
||||
</entry>
|
||||
<entry name=":lang(en)" version="2.0" browsers="C,FF1,IE8,O8,S3" ref="http://www.w3.org/TR/css3-selectors/#lang-pseudo" syntax="html:lang(en) { color: blue; }">
|
||||
<entry name=":lang(en)" version="2.0" browsers="E,C,FF1,IE8,O8,S3" ref="http://www.w3.org/TR/css3-selectors/#lang-pseudo" syntax="html:lang(en) { color: blue; }">
|
||||
<desc>The pseudo-class :lang(C) represents an element that is in language C.</desc>
|
||||
</entry>
|
||||
<entry name=":last-child" version="3.0" browsers="C,FF1,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#last-child-pseudo" syntax="li:last-child { font-size: 1.2em; }">
|
||||
<entry name=":last-child" version="3.0" browsers="E,C,FF1,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#last-child-pseudo" syntax="li:last-child { font-size: 1.2em; }">
|
||||
<desc>Same as :nth-last-child(1). The :last-child pseudo-class represents an element that is the last child of some other element.</desc>
|
||||
</entry>
|
||||
<entry name=":last-of-type" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#last-of-type-pseudo" syntax="dl dt:last-of-type { font-size: 200%; }">
|
||||
<entry name=":last-of-type" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#last-of-type-pseudo" syntax="dl dt:last-of-type { font-size: 200%; }">
|
||||
<desc>Same as :nth-last-of-type(1). The :last-of-type pseudo-class represents an element that is the last sibling of its type in the list of children of its parent element.</desc>
|
||||
</entry>
|
||||
<entry name=":left" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-page/#left-right-first" syntax="@page :left { margin-left: 4cm; }">
|
||||
@@ -220,55 +220,55 @@
|
||||
<desc>The pseudo-class :-ms-lang(C) represents an element that is in language C.</desc>
|
||||
</entry>
|
||||
<entry name=":no-button" version="3.0" browsers="C,S5" />
|
||||
<entry name=":not(:empty)" version="3.0" browsers="C,FF1,IE9,O9.5,S2" ref="http://www.w3.org/TR/css3-selectors/#negation" syntax="div:not(:empty) { border-color: pink; }">
|
||||
<entry name=":not(:empty)" version="3.0" browsers="E,C,FF1,IE9,O9.5,S2" ref="http://www.w3.org/TR/css3-selectors/#negation" syntax="div:not(:empty) { border-color: pink; }">
|
||||
<desc>The negation pseudo-class, :not(X), is a functional notation taking a simple selector (excluding the negation pseudo-class itself) as an argument. It represents an element that is not represented by its argument.</desc>
|
||||
</entry>
|
||||
<entry name=":nth-child(2n+1)" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-child-pseudo" syntax="tr:nth-child(2n+1) { border-color: pink; }">
|
||||
<entry name=":nth-child(2n+1)" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-child-pseudo" syntax="tr:nth-child(2n+1) { border-color: pink; }">
|
||||
<desc>The :nth-child(an+b) pseudo-class notation represents an element that has an+b-1 siblings before it in the document tree, for any positive integer or zero value of n, and has a parent element.</desc>
|
||||
</entry>
|
||||
<entry name=":nth-column(2n+1)" version="3.0" browsers="none" ref="http://www.w3.org/TR/selectors4/#nth-column-pseudo" syntax=":nth-column(2n+1) > span { color: yellow; }" />
|
||||
<entry name=":nth-last-child(-n+2)" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-last-child-pseudo" syntax="tr:nth-last-child(-n+2) { border-color: pink; }">
|
||||
<entry name=":nth-last-child(-n+2)" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-last-child-pseudo" syntax="tr:nth-last-child(-n+2) { border-color: pink; }">
|
||||
<desc>The :nth-last-child(an+b) pseudo-class notation represents an element that has an+b-1 siblings after it in the document tree, for any positive integer or zero value of n, and has a parent element.</desc>
|
||||
</entry>
|
||||
<entry name=":nth-last-column(2n+1)" version="3.0" browsers="none" ref="http://www.w3.org/TR/selectors4/#nth-column-pseudo" syntax=":nth-last-column(2n+1) > span { color: yellow; }" />
|
||||
<entry name=":nth-last-match(div)" version="3.0" browsers="none" ref="http://www.w3.org/TR/selectors4/#nth-last-match-pseudo" syntax="div:nth-last-match(p) { border-color: pink; }">
|
||||
<desc>Represents an element that has An+B-1 siblings that match the given selector list after it in the document tree.</desc>
|
||||
</entry>
|
||||
<entry name=":nth-last-of-type(n+2)" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-of-type-pseudo" syntax="tr:nth-last-of-type(n+2) { border-color: pink; }">
|
||||
<entry name=":nth-last-of-type(n+2)" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-of-type-pseudo" syntax="tr:nth-last-of-type(n+2) { border-color: pink; }">
|
||||
<desc>The :nth-last-of-type(an+b) pseudo-class notation represents an element that has an+b-1 siblings with the same expanded element name after it in the document tree, for any zero or positive integer value of n, and has a parent element.</desc>
|
||||
</entry>
|
||||
<entry name=":nth-match(div)" version="3.0" browsers="none" ref="http://www.w3.org/TR/selectors4/#the-nth-match-pseudo" syntax="div:nth-match(p) { border-color: pink; }">
|
||||
<desc>Represents an element that has An+B-1 siblings that match the given selector list before it in the document tree.</desc>
|
||||
</entry>
|
||||
<entry name=":nth-of-type(2n+1)" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-of-type-pseudo" syntax="tr:nth-of-type(2n) { border-color: pink; }">
|
||||
<entry name=":nth-of-type(2n+1)" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#nth-of-type-pseudo" syntax="tr:nth-of-type(2n) { border-color: pink; }">
|
||||
<desc>The :nth-of-type(an+b) pseudo-class notation represents an element that has an+b-1 siblings with the same expanded element name before it in the document tree, for any zero or positive integer value of n, and has a parent element.</desc>
|
||||
</entry>
|
||||
<entry name=":only-child" version="3.0" browsers="C,FF1.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#only-child-pseudo" syntax="p:only-child { color: #f00; }">
|
||||
<entry name=":only-child" version="3.0" browsers="E,C,FF1.5,IE9,O9.5,S3.1" ref="http://www.w3.org/TR/css3-selectors/#only-child-pseudo" syntax="p:only-child { color: #f00; }">
|
||||
<desc>Represents an element that has a parent element and whose parent element has no other element children. Same as :first-child:last-child or :nth-child(1):nth-last-child(1), but with a lower specificity.</desc>
|
||||
</entry>
|
||||
<entry name=":only-of-type" version="3.0" browsers="C,FF3.5,IE9,O9.5,S3.2" ref="http://www.w3.org/TR/css3-selectors/#only-of-type-pseudo" syntax="p:only-of-type { color: #f00; }">
|
||||
<entry name=":only-of-type" version="3.0" browsers="E,C,FF3.5,IE9,O9.5,S3.2" ref="http://www.w3.org/TR/css3-selectors/#only-of-type-pseudo" syntax="p:only-of-type { color: #f00; }">
|
||||
<desc>The :only-of-type selector matches every element that is the only child of its type, of its parent. Same as :first-of-type:last-of-type or :nth-of-type(1):nth-last-of-type(1), but with a lower specificity.</desc>
|
||||
</entry>
|
||||
<entry name=":optional" version="3.0" browsers="C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:optional { color: yellow; }">
|
||||
<entry name=":optional" version="3.0" browsers="E,C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:optional { color: yellow; }">
|
||||
<desc>A form element is :required or :optional if a value for it is, respectively, required or optional before the form it belongs to is submitted. Elements that are not form elements are neither required nor optional.</desc>
|
||||
</entry>
|
||||
<entry name=":out-of-range" version="3.0" browsers="C,FF10,IE10,O9.6,S5.1" ref="http://www.w3.org/TR/css3-ui/#out-of-range" syntax="input:out-of-range { color: red; }">
|
||||
<entry name=":out-of-range" version="3.0" browsers="E13,C,FF10,O9.6,S5.1" ref="http://www.w3.org/TR/css3-ui/#out-of-range" syntax="input:out-of-range { color: red; }">
|
||||
<desc>The in-range and out-of-range pseudo-classes should be used in conjunction with the min and max attributes, whether on a range input, a number field, or any other types that accept those attributes.</desc>
|
||||
</entry>
|
||||
<entry name=":past" version="3.0" browsers="C,O16,S6" ref="https://dvcs.w3.org/hg/text-tracks/raw-file/default/webvtt/Overview.html#dfn-past-pseudo-class" syntax=":past { color: green; }" />
|
||||
<entry name=":read-only" version="3.0" browsers="C,FF10,IE10,O9,S4" ref="http://www.w3.org/TR/css3-ui/" syntax="input:read-only { margin: auto; }">
|
||||
<entry name=":read-only" version="3.0" browsers="E13,C,FF10,O9,S4" ref="http://www.w3.org/TR/css3-ui/" syntax="input:read-only { margin: auto; }">
|
||||
<desc>An element whose contents are not user-alterable is :read-only. However, elements whose contents are user-alterable (such as text input fields) are considered to be in a :read-write state. In typical documents, most elements are :read-only.</desc>
|
||||
</entry>
|
||||
<entry name=":read-write" version="3.0" browsers="C,FF10,IE10,O9,S4" ref="http://www.w3.org/TR/css3-ui/" syntax="input:read-write { margin: auto 2px; }">
|
||||
<entry name=":read-write" version="3.0" browsers="E13,C,FF10,O9,S4" ref="http://www.w3.org/TR/css3-ui/" syntax="input:read-write { margin: auto 2px; }">
|
||||
<desc>An element whose contents are not user-alterable is :read-only. However, elements whose contents are user-alterable (such as text input fields) are considered to be in a :read-write state. In typical documents, most elements are :read-only.</desc>
|
||||
</entry>
|
||||
<entry name=":required" version="3.0" browsers="C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:optional { color: yellow; }">
|
||||
<entry name=":required" version="3.0" browsers="E,C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:optional { color: yellow; }">
|
||||
<desc>A form element is :required or :optional if a value for it is, respectively, required or optional before the form it belongs to is submitted. Elements that are not form elements are neither required nor optional.</desc>
|
||||
</entry>
|
||||
<entry name=":right" version="2.0" browsers="all" ref="http://www.w3.org/TR/css3-page/#left-right-first" syntax="@page :right { margin-left: 4cm; }">
|
||||
<desc>When printing double-sided documents, the page boxes on left and right pages may be different. This can be expressed through CSS pseudo-classes defined in the page context.</desc>
|
||||
</entry>
|
||||
<entry name=":root" version="3.0" browsers="C,FF1,IE9,O9.5,S1" ref="http://www.w3.org/TR/css3-selectors/#root-pseudo" syntax=":root { padding: auto 3em; }">
|
||||
<entry name=":root" version="3.0" browsers="E,C,FF1,IE9,O9.5,S1" ref="http://www.w3.org/TR/css3-selectors/#root-pseudo" syntax=":root { padding: auto 3em; }">
|
||||
<desc>The :root pseudo-class represents an element that is the root of the document. In HTML 4, this is always the HTML element.</desc>
|
||||
</entry>
|
||||
<entry name=":scope" version="3.0" browsers="none" ref="http://www.w3.org/TR/selectors4/#scope-pseudo" syntax=":scope { border-color: pink; }">
|
||||
@@ -276,10 +276,10 @@
|
||||
</entry>
|
||||
<entry name=":single-button" version="3.0" browsers="C,S5" />
|
||||
<entry name=":start" version="3.0" browsers="C,S5" />
|
||||
<entry name=":target" version="3.0" browsers="C,FF1,IE9,O9.5,S1" ref="http://www.w3.org/TR/css3-selectors/#root-pseudo" syntax="h2:target { background-color: yellow; }">
|
||||
<entry name=":target" version="3.0" browsers="E,C,FF1,IE9,O9.5,S1" ref="http://www.w3.org/TR/css3-selectors/#root-pseudo" syntax="h2:target { background-color: yellow; }">
|
||||
<desc>Some URIs refer to a location within a resource. This kind of URI ends with a 'number sign' (#) followed by an anchor identifier (called the fragment identifier).</desc>
|
||||
</entry>
|
||||
<entry name=":valid" version="3.0" browsers="C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:valid { border-color: green; }">
|
||||
<entry name=":valid" version="3.0" browsers="E,C,FF4,IE10,O10,S5" ref="http://www.w3.org/TR/css3-ui/" syntax="input:valid { border-color: green; }">
|
||||
<desc>An element is :valid or :invalid when it is, respectively, valid or invalid with respect to data validity semantics defined by a different specification.</desc>
|
||||
</entry>
|
||||
<entry name=":vertical" version="3.0" browsers="C,S5" />
|
||||
@@ -291,7 +291,7 @@
|
||||
<entry name=":window-inactive" version="3.0" browsers="C,S3" />
|
||||
</pseudoClasses>
|
||||
<pseudoElements>
|
||||
<entry name="::after" version="3.0" browsers="C,FF1.5,IE10,O7,S4" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div::after { content: 'abc'; }">
|
||||
<entry name="::after" version="3.0" browsers="E,C,FF1.5,IE10,O7,S4" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div::after { content: 'abc'; }">
|
||||
<desc>Pseudo-element is used to insert content immediately after the content of an element (or other pseudo-element). The 'content' property is used to specify the content to insert.</desc>
|
||||
</entry>
|
||||
<entry name="::after(2)" version="3.0" browsers="none" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="span::after(2) { content: 'B'; }">
|
||||
@@ -300,8 +300,8 @@
|
||||
<entry name="::alternate" version="3.0" browsers="none" ref="http://www.w3.org/TR/css3-content/#inserting1" syntax="span::after::alternate { content: 'alternate2'; move-to: example; }">
|
||||
<desc>This pseudo-element is created by setting its 'move-to' property to an identifier. It is rendered at the next occurrence of 'pending()' in a 'content' property.</desc>
|
||||
</entry>
|
||||
<entry name="::backdrop" version="3.0" browsers="none" ref="http://www.w3.org/TR/fullscreen/#::backdrop-pseudo-element" syntax="*|*:fullscreen::backdrop { position: fixed; }" />
|
||||
<entry name="::before" version="3.0" browsers="C,FF1.5,IE10,O8,S1" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div::before { content: 'abc'; }">
|
||||
<entry name="::backdrop" version="3.0" browsers="E" ref="http://www.w3.org/TR/fullscreen/#::backdrop-pseudo-element" syntax="*|*:fullscreen::backdrop { position: fixed; }" />
|
||||
<entry name="::before" version="3.0" browsers="E,C,FF1.5,IE10,O8,S1" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="div::before { content: 'abc'; }">
|
||||
<desc>Pseudo-element is used to insert content immediately before the content of an element (or other pseudo-element). The 'content' property is used to specify the content to insert.</desc>
|
||||
</entry>
|
||||
<entry name="::before(2)" version="3.0" browsers="none" ref="http://www.w3.org/TR/css3-content/#inserting" syntax="span::before(2) { content: 'B'; }">
|
||||
@@ -312,10 +312,10 @@
|
||||
<entry name="::cue()" version="3.0" browsers="C,O16,S6" ref="https://dvcs.w3.org/hg/text-tracks/raw-file/default/webvtt/Overview.html#the-cue-pseudo-element" syntax="::cue(v(voice=woman)) { color: red; }" />
|
||||
<entry name="::cue-region" version="3.0" browsers="C,O16,S6" ref="https://dvcs.w3.org/hg/text-tracks/raw-file/default/webvtt/Overview.html#the-cue-region-pseudo-element" syntax="::cue-region(v(voice=woman)) { color: red; }" />
|
||||
<entry name="::cue-region()" version="3.0" browsers="C,O16,S6" ref="https://dvcs.w3.org/hg/text-tracks/raw-file/default/webvtt/Overview.html#the-cue-region-pseudo-element" syntax="::cue-region { border: none; }" />
|
||||
<entry name="::first-letter" version="3.0" browsers="C,FF1.5,IE10,O7,S1" ref="http://www.w3.org/TR/css3-selectors/#first-letter" syntax="p::first-letter { font-size: 200%; }">
|
||||
<entry name="::first-letter" version="3.0" browsers="E,C,FF1.5,IE10,O7,S1" ref="http://www.w3.org/TR/css3-selectors/#first-letter" syntax="p::first-letter { font-size: 200%; }">
|
||||
<desc>The ::first-letter pseudo-element represents the first letter of an element, if it is not preceded by any other content (such as images or inline tables) on its line.</desc>
|
||||
</entry>
|
||||
<entry name="::first-line" version="3.0" browsers="C,FF1.5,IE10,O7,S1" ref="http://www.w3.org/TR/css3-selectors/#first-line" syntax="p::first-line { color: green; }">
|
||||
<entry name="::first-line" version="3.0" browsers="E,C,FF1.5,IE10,O7,S1" ref="http://www.w3.org/TR/css3-selectors/#first-line" syntax="p::first-line { color: green; }">
|
||||
<desc>The ::first-line pseudo-element describes the contents of the first formatted line of an element.</desc>
|
||||
</entry>
|
||||
<entry name="::line-marker" version="3.0" browsers="none" ref="http://www.w3.org/TR/css3-content/#block" syntax="pre::line-marker { width: 2em; }">
|
||||
@@ -380,7 +380,7 @@
|
||||
<entry name="::outside(2)" version="3.0" browsers="none" ref="http://www.w3.org/TR/css3-content/#wrapping" syntax="span::outside(1)::before { content: 'A'; }">
|
||||
<desc>An '::outside' pseudo-element is one that is generated immediately outside the pseudo-element's superior. When given a parameter, '::outside(n)' represents an nth pseudo-element generated immediately around the n-1th pseudo-element.</desc>
|
||||
</entry>
|
||||
<entry name="::selection" version="3.0" browsers="C,FF4,IE9,O9.5,S1.1" ref="http://www.w3.org/TR/css3-selectors/#selection" syntax="p::selection { color: red; }">
|
||||
<entry name="::selection" version="3.0" browsers="E,C,FF4,IE9,O9.5,S1.1" ref="http://www.w3.org/TR/css3-selectors/#selection" syntax="p::selection { color: red; }">
|
||||
<desc>The ::selection selector matches the portion of an element that is selected by a user. Only a few CSS properties can be applied to ::selection: color, background, cursor, and outline.</desc>
|
||||
</entry>
|
||||
<entry name="::-webkit-file-upload-button" version="3.0" browsers="C,O,S6" />
|
||||
|
||||
Reference in New Issue
Block a user