1
0
Fork 0
firefox/testing/web-platform/tests/css/css-images/gradient/gradient-infinity-001-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
No EOL
491 B
HTML

<!DOCTYPE html>
<link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
<link rel="author" title="一丝" href="mailto:yiorsi@gmail.com">
<title>All the boxes below should have the lime background.</title>
<style>
.box {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.box > div {
width: 100px;
height: 100px;
border: solid 1px black;
background-color: lime;
}
</style>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>