https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d0b159300ca1f376f148ff6ddb401edca03c0504 authored by Jim Evans on 16 March 2018, 14:04:52 UTC
Changing test_parent_htmldocument to use <body> tag
Tip revision: d0b1593
flexbox_margin-left-ex.html
<!DOCTYPE html>
<title>flexbox | margin-left: auto</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#item-margins">
<link rel="match" href="flexbox_margin-left-ex-ref.html">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;
	height: 8em;
	width: 32em;
	position: relative;

	display: flex;
}
span {
	background: white;
	margin: 1em;
	display: inline-block;
}
span:last-child {
	margin-left: auto;
}
</style>

<div>
	<span>one</span><span>two</span><span>three</span><span>four</span></div>
back to top