https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5dc6b1334c08f1d5e2ac6ba307eba5772f7e2fff authored by Chris Rebert on 28 November 2016, 01:36:43 UTC
Add tests for Event.returnValue
Tip revision: 5dc6b13
flexbox_margin.html
<!DOCTYPE html>
<title>flexbox | margins</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_margin-ref.html">
<style>
div {
	background: black;
	margin: 1em;
	height: 4em;

	display: flex;
	justify-content: space-around;
}
</style>

<div></div>
back to top