blob: 1abb7ddebdd3f0cb35707eff7bc043587a406b95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="ahem.css" />
<title>Preserved whitespace should contribute to overall backplate sizing.</title>
<style>
body {
font: 20px Ahem;
}
.sample {
background-image: url("blue.png");
white-space: pre;
padding: 10px;
}
</style>
</head>
<body>
ppppp ppppp<div class="sample"> ppppp ppppp</div>ppppp ppppp
<div class="sample">ppppp ppppp </div>
<div class="sample"> </div>
</body>
</html>
|