| 12345678910111213141516171819202122232425262728 |
- <h2>Left-to–right content</h2>
- <div id="editor-ltr">
- <p>Foo <u>bar</u> biz</p>
- <p>Foo <u>bar</u><i>biz</i> buz?</p>
- <p>Foo <i><u>barbiz</u></i> buz?</p>
- <p>Foo <b>bar</b> biz</p>
- <p>Foo <u>bar</u><i>biz</i></p>
- </div>
- <h2>Right–to–left content</h2>
- <div id="editor-rtl">
- <p> היא <u>תכונה</u> של</p>
- <p> זהה <i>לזה</i><u>שיוצג</u> בתוצאה</p>
- <p> זהה <i><u>לזהשיוצג</u></i> בתוצאה</p>
- <p>וכדומה. <strong>תכונה</strong> זו מאפיינת</p>
- </div>
- <style>
- u {
- background: rgba(255,0,0,.3);
- }
- i {
- background: rgba(0,255,0,.3);
- }
- </style>
|