OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf8"> | |
5 <style> | |
6 div { | |
7 font-size: 24pt; | |
8 position: relative; | |
9 } | |
10 div > span { | |
11 visibility: hidden; | |
12 display: inline-block; | |
13 position: absolute; | |
14 top: 0px; | |
15 left: 0px; | |
16 width: 100%; | |
17 height: 9pt; | |
18 background: white; | |
19 } | |
20 </style> | |
21 </head> | |
22 <body> | |
23 <div>ب-ب-ب<span id="mask"> </span></div> | |
24 <p> | |
25 The three Arabic glyphs above should have the same baseline. | |
26 </p> | |
27 </body> | |
28 </html> | |
OLD | NEW |