https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 38cb63e5ec8e6a14fb1094dee946800f5ea35bee authored by Josh Matthews on 01 August 2018, 18:31:04 UTC
servodriver: Fix reference to server configuration.
Tip revision: 38cb63e
flexbox_justifycontent-center-overflow-ref.html
<!DOCTYPE html>
<title>flexbox | justify-content: center / overflow</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
	font-family: monospace;
	background: blue;
	margin: 1em 0 0 10em;
	border: 1px solid black;
	height: 8em;
	width: 4em;
	position: relative;
}
span {
	background: yellow;
	margin: 1em 0 0 -2.85em;
	height: 6em;
	display: inline-block;
}
span:nth-child(2) {
	background: pink;
	margin-left: 2em;
}
span:nth-child(3) {
	background: lightblue;
	margin-left: 0;
	position: relative;
	top: -7em;
	left: 4.95em
}
</style>

<div>
	<span>dam</span><span>dam</span><span>dam</span>
</div>
back to top