<!doctype html>
<html>
	<head>
		<title>Float clear</title>
		<link href="/assets/reset.css" rel="stylesheet">
		<link href="setup.css" rel="stylesheet">
		<link href="style.css" rel="stylesheet">
	</head>
	<body>
		<section>
			<aside>
				<p>This is an aside element.</p>
			</aside>
			<p>This is some text.</p>
			<p>And a second pargraph set to clear left, so it goes across the float.</p>
		</section>
		<section>
			<aside>
				<p>And another aside here too, with a lot more text in it.</p>
			</aside>
			<p>And some more.</p>
			<p>This one clears left, but the aside is to the right.</p>
		</section>
		<section>
			<p>And a third one, too.</p>
		</section>
	</body>
</html>
/* Same as before. */
body {
	font-family: sans-serif;
	padding: 20px;
}

section {
	background-color: deepskyblue;
	border-top: solid black 4px;
	padding: 10px;
}

section:not(:first-child) { margin-top: 20px; }
aside {
	background-color: gold;
	float: left;
	margin-right: 10px;
	padding: 10px;
	width: 100px;
}

section:nth-child(2) aside {
	float: right;
	margin-left: 10px;
	margin-right: initial;
}

p:last-child {
	clear: left;
}