OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #container { | |
4 width: 300px; | |
5 height: 300px; | |
6 border: solid 1px red; | |
7 text-align: end; | |
8 word-spacing: 10px; | |
9 } | |
10 </style> | |
11 <div id="container"> | |
12 <span>AAAAA</span> | |
13 <span style="display:inline-block">BBBBB</span> | |
14 <span>CCCCC</span> | |
15 </div> | |
16 This test passes if the texts are aligned right, without overflowing. | |
OLD | NEW |