<!DOCTYPE html>
<html><head><title>flexbox | singleline flexcontainer versus stf :: table</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-items" rel="help">
<link href="reference/flexbox_stf-table-singleline-ref.htm" rel="match">
<style>
#test {
	background: blue;
	display: table;
}	
div div {
	background: red;
	width: 0;

	display: flex;
}
p {
	margin: 1em 0;
	width: 200px;
}
p:last-child {
	margin-right: 200em;
}
</style>

</head><body><div id="test">
	<div>
		<p>damer</p>
		<p>damer</p>
		<p>damer</p>
		<p>damer</p>
		<p>damer</p>
	</div>
</div>
</body></html>