blob: a019365d48eea321b52f1fcd926f62a3817dae22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Reference for bug 1271714: .fixed should have a yellow background</title>
<style type="text/css">
.fixed {
border: 1px solid black;
height: 50px;
width: 200px;
background: yellow;
}
</style>
<div class="fixed"></div>
|