blob: 58f2ee6905f39ed2bf41c97bb9f30ed27005e190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<style>
div {
height: 400px;
border: 0;
}
div > div {
width: 50%;
float: left;
}
</style>
<p>This test PASS if you see two equally sized blue and green boxes.</p>
<div>
<div style='background: blue;'></div>
<div style='background: green;'></div>
</div>
|