blob: 252c28ade2779763180445e14ea892a3616ce5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="ahem.css" />
<title>Text that overlaps a background image should be backplated.</title>
<style>
div {
font: 20px Ahem;
background-image: url("blue.png");
}
</style>
</head>
<div>
ppppp ppppp
</div>
</html>
|