Skip to content

Commit 5b8e3d5

Browse files
authored
color and border style (#169)
1 parent a97ee11 commit 5b8e3d5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

feature-queries/simple.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
@supports (row-gap: 10px) {
1616
.box {
17-
border: 4px solid red;
17+
border: 4px dashed darkgreen;
1818
color: red;
1919
}
2020
}
@@ -24,7 +24,8 @@
2424
<body>
2525
<section class="preview">
2626
<div class="box">
27-
If your browser supports row-gap, the text and border will be red.
27+
If your browser supports row-gap, border will be be
28+
dashed and text will be darkgreen
2829
</div>
2930
</section>
3031

@@ -35,15 +36,15 @@
3536
}
3637
@supports (row-gap: 10px) {
3738
.box {
38-
border: 4px solid red;
39+
border: 4px dashed darkgreen;
3940
color: red;
4041
}
4142
}</textarea
4243
>
4344

4445
<textarea class="playable playable-html" style="height: 120px">
4546
<div class="box">
46-
If your browser supports row-gap, the text and border will be red.
47+
If your browser supports row-gap, border will be be dashed and text will be darkgreen
4748
</div></textarea
4849
>
4950

0 commit comments

Comments
 (0)