Revision 9dcebcba39eba001a6f4a525646712021b55a685 authored by Robert Ma on 22 March 2018, 19:02:06 UTC, committed by Robert Ma on 22 March 2018, 20:18:25 UTC
1 parent f94a28a
Raw File
flexbox_wrap-ref.html
<!DOCTYPE html>
<title>flexbox | flex-wrap: wrap</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
	background: blue;
	margin: 1em 0;
	border: 1px solid black;
	width: 20em;
}
span {
	background: white;
	margin: 1em;
	width: 8em;
	display: block;
	float: left;
}
div::after {
	content: "";
	clear: both;
	display: block;
}
</style>

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