17 lines
267 B
HTML
17 lines
267 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
width: 260px;
|
|
height: 260px;
|
|
background-size: 100px 100px;
|
|
background-position: -20px -20px;
|
|
background-image: linear-gradient(to bottom right, yellow, blue);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|