<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS styles for my float demo page */

section {
	width: 1000px;
}

.header {
	background: red;
}

.sidebar {
	box-sizing: border-box;
	background: lime;
	width: 300px;
	height: 600px;
	float: left;
	padding: 10px;
	margin: 10px;
}

.main-content {
	box-sizing: border-box;
	background: yellow;
	width: 700px;
	height: 600px;
	float: left;
	padding: 10px;
	margin: 10px;
}

.footer {
	background: orange;
	clear: both;
}</pre></body></html>