Skip to content

Commit

Permalink
[css-conditional-3] Fix comment syntax in example.
Browse files Browse the repository at this point in the history
Fixes #3994.
  • Loading branch information
dbaron committed Jun 1, 2019
1 parent d3628cb commit b8c4704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css-conditional-3/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ conditions are true.

<div class="example">For example, with this set of nested rules:
<pre>
@media print { // rule (1)
@media print { /* rule (1) */
/* hide navigation controls when printing */
#navigation { display: none }
@media (max-width: 12cm) { // rule (2)
@media (max-width: 12cm) { /* rule (2) */
/* keep notes in flow when printing to narrow pages */
.note { float: none }
}
Expand Down

0 comments on commit b8c4704

Please sign in to comment.