1212 rel =dcterms.rights >
1313 < meta content ="CSS Conditional Rules Module Level 3 " name =dcterms.title >
1414 < meta content =text name =dcterms.type >
15- < meta content =2013-11-09 name =dcterms.date >
15+ < meta content =2014-05-02 name =dcterms.date >
1616 < meta content ="L. David Baron " name =dcterms.creator >
1717 < meta content =W3C name =dcterms.publisher >
1818 < meta content ="http://dev.w3.org/csswg/css3-conditional/ "
3333 < h1 class =p-name > CSS Conditional Rules Module Level 3</ h1 >
3434
3535 < 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 >
3737
3838 < dl >
3939 < dt > This version:
4040
4141 < 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 >
4343
4444 < dt > Latest version:
4545
@@ -88,7 +88,7 @@ <h2 class="no-num no-toc">Editor's Draft <span class=dt-updated><span
8888 <!--begin-copyright-->
8989 < p class =copyright > < a
9090 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
9292 title ="World Wide Web Consortium "> W3C</ abbr > </ a > < sup > ®</ sup > (< a
9393 href ="http://www.csail.mit.edu/ "> < abbr
9494 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
787787 < div class =example >
788788 < p > For example, the following rule
789789
790- < pre > @supports ( display: flexbox ) {
791- body, #navigation, #content { display: flexbox ; }
790+ < pre > @supports ( display: flex ) {
791+ body, #navigation, #content { display: flex ; }
792792 #navigation { background: blue; color: white; }
793793 #article { background: white; color: black; }
794794}</ pre >
795795
796796 < p > applies the rules inside the ‘< a href ="#at-ruledef-supports "> < code
797797 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.
799799 </ div >
800800
801801 < div class =example >
802802 < p > The following example shows an additional ‘< a
803803 href ="#at-ruledef-supports "> < code class =css > @supports</ code > </ a > ’ rule
804804 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:
806806
807- < pre > @supports not ( display: flexbox ) {
807+ < pre > @supports not ( display: flex ) {
808808 body { width: 100%; height: 100%; background: white; color: black; }
809809 #navigation { width: 25%; }
810810 #article { width: 75%; }
811811}</ pre >
812812
813813 < 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.
816816 </ div >
817817
818818 < div class =example >
@@ -891,13 +891,13 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
891891 < div class =example >
892892 < p > For example, the following rule is not valid:
893893
894- < pre class =illegal > @supports display: flexbox {
894+ < pre class =illegal > @supports display: flex {
895895 // ...
896896}</ pre >
897897
898898 < p > Instead, authors must write:
899899
900- < pre > @supports (display: flexbox ) {
900+ < pre > @supports (display: flex ) {
901901 // ...
902902}</ pre >
903903 </ div >
@@ -909,7 +909,7 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
909909 < div class =example >
910910 < p > For example, authors may write:
911911
912- < pre > @supports ((display: flexbox )) {
912+ < pre > @supports ((display: flex )) {
913913 // ...
914914}</ pre >
915915 </ div >
@@ -921,7 +921,7 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
921921 < div class =example >
922922 < p > For example, the following rule is valid:
923923
924- < pre > @supports (display: flexbox !important) {
924+ < pre > @supports (display: flex !important) {
925925 // ...
926926}</ pre >
927927 </ div >
@@ -1637,8 +1637,8 @@ <h3 class=no-num id=normative-references>Normative references</h3>
16371637 < dt id =ref-RFC2119 > [RFC2119]
16381638
16391639 < 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
16421642 href ="http://www.ietf.org/rfc/rfc2119.txt "> http://www.ietf.org/rfc/rfc2119.txt</ a >
16431643 </ dd >
16441644 <!---->
@@ -1666,10 +1666,10 @@ <h3 class=no-num id=other-references>Other references</h3>
16661666 < dt id =ref-CSS3-TRANSITIONS > [CSS3-TRANSITIONS]
16671667
16681668 < 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
16711671 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 >
16731673 </ dd >
16741674 <!---->
16751675 </ dl >
0 commit comments