mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c6cf18e091
--HG-- extra : rebase_source : 1ffa269abef40fc16b08c6a34c6bb87906112a82
19 lines
288 B
HTML
19 lines
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>
|