mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
18 lines
256 B
HTML
18 lines
256 B
HTML
|
<!-- Blend a background image and a background color specifying background-size -->
|
||
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
div {
|
||
|
background: #777777;
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div></div>
|
||
|
</body>
|
||
|
</html>
|