https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f7b5d90ef08a5419317a2456d9804aa664661507 authored by xiaoyu3x on 22 March 2018, 02:15:48 UTC
Add CEReactions tests for HTMLButtonElement
Tip revision: f7b5d90
flexbox_justifycontent-spacebetween-negative.html
<!DOCTYPE html>
<title>flexbox | justify-content: space-between / negative</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help"
	href="http://www.w3.org/TR/css-flexbox-1/#justify-content-property">
<link rel="match" href="flexbox_justifycontent-spacebetween-negative-ref.html">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;
	height: 8em;
	width: 17em;

	display: flex;
	justify-content: space-between;
}
span {
	background: white;
	margin: 1em;
	width: 4em;
	display: inline-block;

	flex: 0 0 auto;
}
span:nth-child(1) {background: yellow;}
span:nth-child(2) {background: pink;}
span:nth-child(3) {background: lightblue;}
</style>

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