mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
16 lines
397 B
HTML
16 lines
397 B
HTML
<!DOCTYPE html>
|
|
<title>Reference: 'border-image-repeat' with 'space' and 'round'</title>
|
|
<style>
|
|
.green {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: green;
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
<p>There should be two green rectangles below:</p>
|
|
<div style="position: relative">
|
|
<div class="green" style="left: 25px"></div>
|
|
<div class="green" style="left: 150px"></div>
|
|
</div>
|