mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
18 lines
326 B
HTML
18 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>
|