зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
288 B
HTML
19 строки
288 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html {
|
|
background: white;
|
|
}
|
|
div {
|
|
background: -moz-linear-gradient(left, 0 white, 50% orange, 50% white);
|
|
background: linear-gradient(left, 0 white, 50% orange, 50% white);
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|