https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e9b052e94617ea4883b2a3ad9b2f33ea456efe46 authored by Chris Lilley on 02 May 2018, 16:18:16 UTC
correct link
Tip revision: e9b052e
flexbox_visibility-collapse-ref.html
<!DOCTYPE html>
<title>flexbox | visibility: collapse</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
body {
	margin: 0;
}
div {
	background: #3366cc;
	border: 1px solid black;
}
div::after {
	content: "";
	clear: both;
	display: block;
}
p {
	background: #ffcc00;
	margin: 2em;
	float: left;
}
</style>

<div>
	<p>damer</p>
	<p>damer</p>
</div>
back to top