https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7b37ce0a83045106480f903224bebbb986dbf34b authored by Hiroshige Hayashizaki on 25 December 2018, 01:05:34 UTC
[wpt/referrer-policy] Fix generator to support expansion=override
Tip revision: 7b37ce0
flexbox_item-bottom-float-ref.html
<!DOCTYPE html>
<title>flexbox | GCPM bottom float</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
	background: black;
	margin: 1em;
	height: 6em;
	width: 400px;
}
p {
	background: #3366cc;
	margin: 2em;
	width: 2em;
	height: 2em;
	float: left;
}
div::after {
	content: "";
	clear: both;
	display: block;
}
</style>

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