Skip to content

Commit 6ef155e

Browse files
committed
[css3-conditional] Also use better class name in example (followup to previous commit).
Continues fixing http://lists.w3.org/Archives/Public/www-style/2013Mar/0037.html
1 parent b7bd3f2 commit 6ef155e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

css-conditional/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -810,15 +810,15 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the
810810
what would cause the box to become invisible were ‘<code
811811
class=property>box-shadow</code>’ not supported.
812812

813-
<pre>.outline {
813+
<pre>.noticebox {
814814
border: 1px solid black;
815815
padding: 1px;
816816
}
817817
@supports ( box-shadow: 0 0 2px black inset ) or
818818
( -moz-box-shadow: 0 0 2px black inset ) or
819819
( -webkit-box-shadow: 0 0 2px black inset ) or
820820
( -o-box-shadow: 0 0 2px black inset ) {
821-
.outline {
821+
.noticebox {
822822
-moz-box-shadow: 0 0 2px black inset;
823823
-webkit-box-shadow: 0 0 2px black inset;
824824
-o-box-shadow: 0 0 2px black inset;

css-conditional/Overview.src.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,15 +552,15 @@ <h2 id="at-supports">Feature queries: the '@supports' rule</h2>
552552
it. When the support is present, it specifies both 'box-shadow' (with
553553
the prefixed versions) and 'border' in a way what would cause the box to
554554
become invisible were 'box-shadow' not supported.</p>
555-
<pre>.outline {
555+
<pre>.noticebox {
556556
border: 1px solid black;
557557
padding: 1px;
558558
}
559559
@supports ( box-shadow: 0 0 2px black inset ) or
560560
( -moz-box-shadow: 0 0 2px black inset ) or
561561
( -webkit-box-shadow: 0 0 2px black inset ) or
562562
( -o-box-shadow: 0 0 2px black inset ) {
563-
.outline {
563+
.noticebox {
564564
-moz-box-shadow: 0 0 2px black inset;
565565
-webkit-box-shadow: 0 0 2px black inset;
566566
-o-box-shadow: 0 0 2px black inset;

0 commit comments

Comments
 (0)