Que tal, gracias a todos por rersponder! Aqui está mi codigo. Como me dijeron coloqué el
Overflow:hidden; dentro del div contenedor y funciono! No crei que fuera tan simple.
Código:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
.contenedor{
width:500px;
background-color:#999999;
padding:10px;
overflow:hidden;
}
.contenedor img{
float:left;
padding-right:10px;
padding-bottom:10px;
}
</style>
</head>
<body>
<div class="contenedor">
<img src="ce5000.jpg" alt="CE5000" />
<p>The Graphtec CE5000-60 (24") and CE5000-120 (48") professional cutting plotters update the extremely successful CE3000Mk2 series with improved features.</p>
</div>
</body>
</html>
Nunca habia escuchado eso del display table, lo probare solo para ver como se comporta.
Nuevamente, gracias por sus respuestas!