blob: 3c0f5a848df98c5fdc574f1e5cf4e15c9e9c406e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>The green box should not disappear</title>
<style>
.box {
width: 400px;
background-color: green;
height: 0px;
opacity: 1;
}
.content {
height: 200px;
width: 200px;
background-color: green;
}
</style>
</head>
<body>
<div class="box">
<div class="content"></div>
</div>
</body>
</html>