Skip to content

Commit

Permalink
[css-writing-modes] Fix mixed up style rules in example, thanks to Cy…
Browse files Browse the repository at this point in the history
…ril Concolato for reporting.
  • Loading branch information
fantasai committed Feb 14, 2018
1 parent 6df9696 commit 6f526ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions css-writing-modes-3/Overview.bs
Expand Up @@ -504,8 +504,8 @@ Example of Bidirectional Text</h3>

<pre>
/* Rules for bidi */
[dir=ltr] {direction: rtl; unicode-bidi: isolate; }
[dir=rtl] {direction: ltr; unicode-bidi: isolate; }
[dir=rtl] {direction: rtl; unicode-bidi: isolate; }
[dir=ltr] {direction: ltr; unicode-bidi: isolate; }

/* Rules for presentation */
section, para {display: block;}
Expand Down
4 changes: 2 additions & 2 deletions css-writing-modes-4/Overview.bs
Expand Up @@ -505,8 +505,8 @@ Example of Bidirectional Text</h3>

<pre>
/* Rules for bidi */
[dir=ltr] {direction: rtl; unicode-bidi: isolate; }
[dir=rtl] {direction: ltr; unicode-bidi: isolate; }
[dir=rtl] {direction: rtl; unicode-bidi: isolate; }
[dir=ltr] {direction: ltr; unicode-bidi: isolate; }

/* Rules for presentation */
section, para {display: block;}
Expand Down

0 comments on commit 6f526ed

Please sign in to comment.