blob: 43d6d45efa68e5bc72bdbe05ad40068e77766d73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<style>
span {
font: 24px sans-serif;
line-height: 2;
color: lime;
background: lime;
}
br {
line-height: 0;
}
</style>
</head>
<body>
<h2>Box-Decoration-Break: Clone</h2>
<span>The</span><br />
<span>quick</span><br />
<span>orange fox</span>
<h2>Box-Decoration-Break: Slice</h2>
<span>The</span><br />
<span>quick</span><br />
<span>orange fox</span>
</body>
</html>
|