mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
18 lines
366 B
HTML
18 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Bug 1274624: Repeating linear gradient</title>
|
|
<style type="text/css">
|
|
div {
|
|
background: repeating-linear-gradient(to top, red, blue 100px);
|
|
background-position: 30px 30px;
|
|
width: 400px;
|
|
height: 400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
</div>
|
|
</body>
|
|
</html>
|