mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
27 lines
No EOL
997 B
HTML
27 lines
No EOL
997 B
HTML
<!DOCTYPE html>
|
|
<html><!-- Submitted from TestTWF Paris --><head>
|
|
<title>CSS Test: Border Image: box with spaced repeating border image</title>
|
|
<link href="mailto:leviw@chromium.org" rel="author" title="Levi Weintraub">
|
|
<link href="http://www.w3.org/TR/css3-background/#the-border-image-repeat" rel="help">
|
|
<meta content="" name="flags">
|
|
<meta content="border-image-repeat: space property spaces out background image that doesn't fit an even number of times." name="assert">
|
|
<link href="reference/border-image-space-001-ref.htm" rel="match">
|
|
<style>
|
|
.borderContainer {
|
|
width: 108px;
|
|
height: 108px;
|
|
border-image: url('support/border.png') 27;
|
|
background-color: green;
|
|
border-image-repeat: space;
|
|
border-image-width: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>There should be a green box below with red diamonds in the corners, and three yellow diamonds evenly spaced
|
|
apart along the edges.</p>
|
|
<div class="borderContainer">
|
|
</div>
|
|
|
|
|
|
</body></html> |