mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
20 lines
351 B
HTML
20 lines
351 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
width: 260px;
|
|
height: 260px;
|
|
-moz-background-size: 100px;
|
|
background-size: 100px;
|
|
background-position: -20px -20px;
|
|
background-image: -moz-linear-gradient(left top, yellow, blue);
|
|
background-image: linear-gradient(left top, yellow, blue);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|