mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
346 B
HTML
20 lines
346 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
width: 260px;
|
|
height: 260px;
|
|
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>
|