blob: a9601fde2dff155452c45d6b3d40df0320462009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<style>
.flex {
height: 200px;
background: blue;
}
</style>
There should only be a blue box below, and the word "FAIL" should
not be seen.
<div class="flex">
</div>
|