OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>Tests subpixel line breaking for floats</title> | |
5 <style> | |
6 a.powered-by { | |
7 float: right; | |
8 position: relative; | |
9 display: inline-block; | |
10 font-size: .9em; | |
11 text-align: right; | |
12 white-space: nowrap; | |
13 } | |
14 a.powered-by span { | |
15 display: inline-block; | |
16 float: right; | |
17 margin-top: -3px; | |
18 margin-left: 6px; | |
19 background: red; | |
20 width: 17px; | |
21 height: 17px; | |
22 } | |
23 </style> | |
24 </head> | |
25 <body> | |
26 <a class="powered-by">Should not wrap <span></span></a> | |
27 </body> | |
28 </html> | |
OLD | NEW |