889742-1.html (599B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Auto dir and alignment</title> 6 <style type="text/css"> 7 p.plaintext { 8 unicode-bidi: plaintext; 9 } 10 </style> 11 </head> 12 <body> 13 <h1>Auto dir and alignment</h1> 14 <p>Every line below should read "<span style="unicode-bidi: bidi-override" 15 >!world םולש</span>" and should be aligned to the right</p> 16 <p class="plaintext">שלום world!</p> 17 <p class="plaintext"><b>שלום</b> world!</p> 18 <p dir="auto">שלום world!</p> 19 <p dir="auto"><b>שלום</b> world!</p> 20 </body> 21 </html>