OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>Soft Hyphen Test</title> |
| 5 <style> |
| 6 p { |
| 7 text-align: justify; |
| 8 width: 250px; |
| 9 height: 250px; |
| 10 position: relative; |
| 11 padding: 1px; |
| 12 } |
| 13 p > #cover { |
| 14 position: absolute; |
| 15 top: 0; |
| 16 left: 0; |
| 17 right: 0; |
| 18 bottom: 0; |
| 19 background: green; |
| 20 display: block; |
| 21 } |
| 22 </style> |
| 23 </head> |
| 24 <body> |
| 25 <p> |
| 26 Lorem ipsu­m dol­or sit amet, consec­tetur |
| 27 ad­ipi­sci­ng elit. Ve­sti­bul­u
m |
| 28 va­rius, to­rto­r nec ti­nci­dunt |
| 29 ali­qu­am, enim ve­lit sem­per nu­ll
a, |
| 30 al­iqu­am co­ndim­ent­um est er­
at |
| 31 nec mau­ris. Nam sed ju­sto at nu­nc sem­
;per |
| 32 al­iqu­et sed sed nu­lla. Nulla sit am­e
t |
| 33 od­io a di­am ves­tib­ulu­m |
| 34 ve­hic­ula sed vel la­cus. Lor­em ipsum |
| 35 dolor sit amet, consectetur adipiscing elit. Phasellus |
| 36 in vestibulum nisl. Nam ti­ncid­unt magna sed |
| 37 ris­us bl­and­it sa­gitt­is. |
| 38 Ph­as­ell­us a im­per­di­et mi. |
| 39 <span id="cover"> </span> |
| 40 </p> |
| 41 <p> |
| 42 A green square and no text should appear above. |
| 43 </p> |
| 44 </body> |
| 45 </html> |
OLD | NEW |