|
1 <!DOCTYPE html> |
|
2 <html><head> |
|
3 <title>unicode-bidi:plaintext</title> |
|
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
5 <style> |
|
6 .plaintext { |
|
7 unicode-bidi:-webkit-plaintext; |
|
8 unicode-bidi:-moz-plaintext; |
|
9 unicode-bidi:plaintext; |
|
10 } |
|
11 textarea { text-align: left; resize: none; } |
|
12 </style> |
|
13 </head><body> |
|
14 <div> |
|
15 The exclamation mark should be on the left side of the first line |
|
16 and on the right side of the second line. |
|
17 </div> |
|
18 <textarea rows=4 cols=50 dir="ltr" class="plaintext"> |
|
19 שלום! |
|
20 hello! |
|
21 </textarea> |
|
22 </body></html> |