blob: 2d1f79eaa8313507921ad30073721676ef895f64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="ahem.css" />
<title>Text runs that are separated by a block-level line will get separate backplates.</title>
<style>
body {
font: 20px Ahem;
}
.sample {
background-image: url("blue.png");
height: 500px;
}
</style>
</head>
<body>
ppppp ppppp<div class="sample">ppppp ppppp</div>ppppp ppppp
</body>
</html>
|