I’m trying to place a border after the div tag , but the line showed around the text , not after below the image on left , how can i fix it ?
<html>
<head>
<title> This is an demo </title>
<style>
.left { float: left; }
.content {
clear: both;
border-color: #666666;
border-bottom: 3px solid;
}
</style>
</head>
<body>
<div class="content">
<img class="left" src="61add42atw1dnf1k4h4qzj.jpg" />
<p> This is a not so long paragraph</p>
</div>
</body>
</html>

How can i place the border a little lower ?
Thanks !
In the .content div, replace the clear:both with overflow:hidden