Newer
Older
minerva / Tests / LibWeb / Layout / input / block-and-inline / clear-both-from-inline-formatting-context.html
@minerva minerva on 13 Jul 222 bytes Initial commit
<style>
	.left {
		float: left;
	}

	.right {
		float: right;
	}

	.c {
		margin-top: 70px;
		clear: both;
		float: left;
	}
</style>

<div>
	<h1 class="left">A</h1>
	<h1 class="right">B</h1>
	<div class="c">X</div>
</div>