mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
34 lines
No EOL
952 B
HTML
34 lines
No EOL
952 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Background: background-repeat: position background image</title>
|
|
<link href="mailto:ethlin@mozilla.com" rel="author" title="Ethan Lin">
|
|
<link href="https://www.mozilla.org" rel="author" title="Mozilla">
|
|
<style type="text/css">
|
|
.outer
|
|
{
|
|
border: 20px solid rgba(0, 0, 0, 0.5);
|
|
width: 106px;
|
|
height: 106px;
|
|
background-image: url(aqua-yellow-37x37.png);
|
|
background-repeat: repeat;
|
|
}
|
|
.outer_gradient
|
|
{
|
|
border: 20px solid rgba(0, 0, 0, 0.5);
|
|
width: 32px;
|
|
height: 32px;
|
|
background-size: 50px 50px;
|
|
background-image: linear-gradient(to top left, red, green);
|
|
background-repeat: no-repeat;
|
|
background-position: -10px -10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="outer"></div>
|
|
<div class="outer_gradient"></div>
|
|
|
|
|
|
|
|
</body></html> |