mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
287bf75e80
--HG-- extra : rebase_source : 9b018973a13a50f7616cac2a369bc3a61ccd5927
19 lines
326 B
HTML
19 lines
326 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
width: 260px;
|
|
height: 260px;
|
|
background-size: 100px 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>
|