Source code

Revision control

Copy as Markdown

Other Tools

<!doctype HTML>
<html>
<meta charset="utf8">
<title>CSS Content Visibility: hidden container is not breakable (reference)</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<style>
#parent {
width: 100px;
}
#container {
border-top: solid green 50px;
border-bottom: solid green 50px;
}
</style>
<p>Test passes if there is a solid green square below.
<div id="parent">
<div id="container"></div>
</div>