blob: a7ed82de69765a9b9a5340fa37a85baf7b101f60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<style>
div {
outline: dashed thin lightblue;
-webkit-hyphenate-character: "-";
font-family: monospace;
}
</style>
<p>
There should be a hyphen at the end of the first line, and it should not
overflow the box.
</p>
<table cellspacing=0 cellpadding=0>
<tr>
<td>
<div>extraordinar<span>-</span><br>ily</div>
</td>
<td style="width: 100%"></td>
</tr>
</table>
|