https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dd481055a1da9b97baeb0848789c398f1ffeaa6d authored by Philip Jägenstedt on 27 September 2018, 10:31:44 UTC
[cssom] Add a test for border shorthand property
Tip revision: dd48105
flexbox_item-float.html
<!DOCTYPE html>
<title>flexbox | floated item</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help"
	href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
<link rel="match" href="flexbox_item-float-ref.html">
<style>
body>div {
	background: black;
	margin: 1em;

	display: flex;
}
div div {
	background: #3366cc;
	margin: 2em;
	width: 2em;
	height: 2em;
	float: right;
}
</style>

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