/* Setup styles in the other file. */aside{background-color:gold;padding:10px;width:100px;float:left;margin-right:10px;}div:nth-child(2)aside{float:right;margin-right:initial;margin-left:10px;}p:last-child{clear:left;}
<!doctype html><html><head><metacharset="utf-8"><metaname="viewport"content="width=device-width, initial-scale=1"><linkhref="../assets/reset.css"rel="stylesheet"><linkhref="setup.css"rel="stylesheet"><linkhref="style.css"rel="stylesheet"></head><body><section><div><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></div><div><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></div><div><p>And a third one, too.</p></div></section></body></html>