12
12
rel =dcterms.rights >
13
13
< meta content ="CSS Conditional Rules Module Level 3 " name =dcterms.title >
14
14
< meta content =text name =dcterms.type >
15
- < meta content =2013-11-09 name =dcterms.date >
15
+ < meta content =2014-05-02 name =dcterms.date >
16
16
< meta content ="L. David Baron " name =dcterms.creator >
17
17
< meta content =W3C name =dcterms.publisher >
18
18
< meta content ="http://dev.w3.org/csswg/css3-conditional/ "
33
33
< h1 class =p-name > CSS Conditional Rules Module Level 3</ h1 >
34
34
35
35
< h2 class ="no-num no-toc "> Editor's Draft < span class =dt-updated > < span
36
- class =value-title title =20131109 > 9 November 2013 </ span > </ span > </ h2 >
36
+ class =value-title title =20140502 > 2 May 2014 </ span > </ span > </ h2 >
37
37
38
38
< dl >
39
39
< dt > This version:
40
40
41
41
< dd > < a class =u-url href ="http://dev.w3.org/csswg/css3-conditional/ ">
42
- http://www.w3.org/TR/2013 /ED-css3-conditional-20131109 /</ a >
42
+ http://www.w3.org/TR/2014 /ED-css3-conditional-20140502 /</ a >
43
43
44
44
< dt > Latest version:
45
45
@@ -88,7 +88,7 @@ <h2 class="no-num no-toc">Editor's Draft <span class=dt-updated><span
88
88
<!--begin-copyright-->
89
89
< p class =copyright > < a
90
90
href ="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright "
91
- rel =license > Copyright</ a > © 2013 < a href ="http://www.w3.org/ "> < abbr
91
+ rel =license > Copyright</ a > © 2014 < a href ="http://www.w3.org/ "> < abbr
92
92
title ="World Wide Web Consortium "> W3C</ abbr > </ a > < sup > ®</ sup > (< a
93
93
href ="http://www.csail.mit.edu/ "> < abbr
94
94
title ="Massachusetts Institute of Technology "> MIT</ abbr > </ a > , < a
@@ -787,32 +787,32 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
787
787
< div class =example >
788
788
< p > For example, the following rule
789
789
790
- < pre > @supports ( display: flexbox ) {
791
- body, #navigation, #content { display: flexbox ; }
790
+ < pre > @supports ( display: flex ) {
791
+ body, #navigation, #content { display: flex ; }
792
792
#navigation { background: blue; color: white; }
793
793
#article { background: white; color: black; }
794
794
}</ pre >
795
795
796
796
< p > applies the rules inside the ‘< a href ="#at-ruledef-supports "> < code
797
797
class =css > @supports</ code > </ a > ’ rule only when ‘< code
798
- class =css > display: flexbox </ code > ’ is supported.
798
+ class =css > display: flex </ code > ’ is supported.
799
799
</ div >
800
800
801
801
< div class =example >
802
802
< p > The following example shows an additional ‘< a
803
803
href ="#at-ruledef-supports "> < code class =css > @supports</ code > </ a > ’ rule
804
804
that can be used to provide an alternative for when ‘< code
805
- class =css > display: flexbox </ code > ’ is not supported:
805
+ class =css > display: flex </ code > ’ is not supported:
806
806
807
- < pre > @supports not ( display: flexbox ) {
807
+ < pre > @supports not ( display: flex ) {
808
808
body { width: 100%; height: 100%; background: white; color: black; }
809
809
#navigation { width: 25%; }
810
810
#article { width: 75%; }
811
811
}</ pre >
812
812
813
813
< p > Note that the ‘< code class =property > width</ code > ’ declarations may
814
- be harmful to the flexbox -based layout, so it is important that they be
815
- present only in the non-flexbox styles.
814
+ be harmful to the flex -based layout, so it is important that they be
815
+ present only in the non-flex styles.
816
816
</ div >
817
817
818
818
< div class =example >
@@ -891,13 +891,13 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
891
891
< div class =example >
892
892
< p > For example, the following rule is not valid:
893
893
894
- < pre class =illegal > @supports display: flexbox {
894
+ < pre class =illegal > @supports display: flex {
895
895
// ...
896
896
}</ pre >
897
897
898
898
< p > Instead, authors must write:
899
899
900
- < pre > @supports (display: flexbox ) {
900
+ < pre > @supports (display: flex ) {
901
901
// ...
902
902
}</ pre >
903
903
</ div >
@@ -909,7 +909,7 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
909
909
< div class =example >
910
910
< p > For example, authors may write:
911
911
912
- < pre > @supports ((display: flexbox )) {
912
+ < pre > @supports ((display: flex )) {
913
913
// ...
914
914
}</ pre >
915
915
</ div >
@@ -921,7 +921,7 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
921
921
< div class =example >
922
922
< p > For example, the following rule is valid:
923
923
924
- < pre > @supports (display: flexbox !important) {
924
+ < pre > @supports (display: flex !important) {
925
925
// ...
926
926
}</ pre >
927
927
</ div >
@@ -1637,8 +1637,8 @@ <h3 class=no-num id=normative-references>Normative references</h3>
1637
1637
< dt id =ref-RFC2119 > [RFC2119]
1638
1638
1639
1639
< dd > S. Bradner. < a href ="http://www.ietf.org/rfc/rfc2119.txt "> < cite > Key
1640
- words for use in RFCs to Indicate Requirement Levels.</ cite > </ a > Internet
1641
- RFC 2119. URL: < a
1640
+ words for use in RFCs to Indicate Requirement Levels.</ cite > </ a > RFC
1641
+ 2119. URL: < a
1642
1642
href ="http://www.ietf.org/rfc/rfc2119.txt "> http://www.ietf.org/rfc/rfc2119.txt</ a >
1643
1643
</ dd >
1644
1644
<!---->
@@ -1666,10 +1666,10 @@ <h3 class=no-num id=other-references>Other references</h3>
1666
1666
< dt id =ref-CSS3-TRANSITIONS > [CSS3-TRANSITIONS]
1667
1667
1668
1668
< dd > Dean Jackson; et al. < a
1669
- href ="http://www.w3.org/TR/2013/WD-css3-transitions-20130212 / "> < cite > CSS
1670
- Transitions.</ cite > </ a > 12 February 2013. W3C Working Draft. (Work in
1669
+ href ="http://www.w3.org/TR/2013/WD-css3-transitions-20131119 / "> < cite > CSS
1670
+ Transitions.</ cite > </ a > 19 November 2013. W3C Working Draft. (Work in
1671
1671
progress.) URL: < a
1672
- href ="http://www.w3.org/TR/2013/WD-css3-transitions-20130212 / "> http://www.w3.org/TR/2013/WD-css3-transitions-20130212 /</ a >
1672
+ href ="http://www.w3.org/TR/2013/WD-css3-transitions-20131119 / "> http://www.w3.org/TR/2013/WD-css3-transitions-20131119 /</ a >
1673
1673
</ dd >
1674
1674
<!---->
1675
1675
</ dl >
0 commit comments