Codice
<style>
.float-left {
float: left;
width: 100px;
height: 50px;
background-color: lightgreen;
}
.clear-left {
clear: left;
background-color: peachpuff;
padding: 10px;
}
</style>
</head>
<body>
<a href="#" onClick="window.history.go(-1);">Home</a>
<div class="float-left">Float sinistra</div>
<div class="clear-left">Dopo clear: left</div>