I have a div with overflow: auto; I want to leave the scrol of this div at the lowest point, to show only the newest information:
div{
width: 150px;
height:80px;
border: 1px solid;
padding:5px;
overflow: auto;
}
<div>
informação antiga<br>
informação antiga<br>
informação antiga<br>
informação antiga<br>
informação nova<br>
informação nova<br>
informação nova<br>
informação nova<br>
informação nova<br>
</div>