blob: dddbf9816e80e904fc64b67c4689a1f99986f25d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>Reference: Whitespace-only text over images should not receive backplates.</title>
<style>
div {
position: absolute;
}
.bg {
background-image: url("red.png");
height: 20px;
width: 20px;
}
</style>
</head>
<body>
<div class="bg"></div>
</body>
</html>
|