Skip to content

Commit 5bb3614

Browse files
committed
In example, put the unprefixed declaration last.
1 parent 9216565 commit 5bb3614

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

css3-conditional/Overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,10 +699,10 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the
699699
( -o-box-shadow: 2px 2px 2px black ) {
700700
.outline {
701701
color: white;
702-
box-shadow: 2px 2px 2px black;
703702
-moz-box-shadow: 2px 2px 2px black;
704703
-webkit-box-shadow: 2px 2px 2px black;
705704
-o-box-shadow: 2px 2px 2px black;
705+
box-shadow: 2px 2px 2px black; /* unprefixed last */
706706
}
707707
}</pre>
708708
</div>

css3-conditional/Overview.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,10 +502,10 @@ <h2 id="at-supports">Feature queries: the '@supports' rule</h2>
502502
( -o-box-shadow: 2px 2px 2px black ) {
503503
.outline {
504504
color: white;
505-
box-shadow: 2px 2px 2px black;
506505
-moz-box-shadow: 2px 2px 2px black;
507506
-webkit-box-shadow: 2px 2px 2px black;
508507
-o-box-shadow: 2px 2px 2px black;
508+
box-shadow: 2px 2px 2px black; /* unprefixed last */
509509
}
510510
}</pre></div>
511511

0 commit comments

Comments
 (0)