Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> div { background: green; color: white; width: 100px; padding: 10px; margin: 5px; } .right { float: right; } .left { float: left; } .clear { clear: both; background: blue; } </style> <div class="left">.left</div> <div class="right">.right</div> <div class="clear">.clear</div> <div class="right">.right</div>
Preview