зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
585 B
HTML
25 строки
585 B
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Color stop positioning for scaled gradients as backgrounds</title>
|
|
<style type="text/css">
|
|
#outer
|
|
{
|
|
border: 1px solid black;
|
|
width: 600px; height: 300px;
|
|
/* 250px stop is halfway along 500px diagonal */
|
|
background-image: linear-gradient(to bottom right, lime 0%, teal 250px, black 100%);
|
|
background-size: 400px auto;
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="outer"></div>
|
|
</body>
|
|
</html>
|