mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
21 lines
247 B
HTML
21 lines
247 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>background: none test</title>
|
|
<style>
|
|
#a {
|
|
background: red;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
#a {
|
|
background: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=a>Background: none test</div>
|
|
</body>
|
|
</html>
|
|
|