Skip to content

Commit eb55b89

Browse files
committed
fix: test
1 parent 35dcc5e commit eb55b89

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

tests/assets/color_6a_test.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<html lang="en">
2+
<head>
3+
<meta charset="utf-8"/>
4+
<title>Color 6a Test</title>
5+
<style>
6+
body { margin: 0; font-family: sans-serif; }
7+
.row { display: flex; width: 100%; height: 80vh; }
8+
.block { flex: 1 1 0; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; }
9+
.block.small { height: 20vh; }
10+
</style>
11+
</head>
12+
<body>
13+
<div class="row">
14+
<div class="block" style="background:#FF0000">#FF0000</div>
15+
<div class="block" style="background:#00FF00;color:#000">#00FF00</div>
16+
<div class="block" style="background:#0000FF">#0000FF</div>
17+
<div class="block" style="background:#FFFF00;color:#000">#FFFF00</div>
18+
<div class="block" style="background:#000000">#000000</div>
19+
<div class="block" style="background:#FFFFFF;color:#000">#FFFFFF</div>
20+
</div>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)