Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/07/2008, 15:21
Jamati
 
Fecha de Ingreso: febrero-2008
Mensajes: 578
Antigüedad: 16 años, 2 meses
Puntos: 3
Respuesta: Div + span + IMG a la derecha

Muchas gracias, problema solucionado.
Mezclando la ayuda que me pasaste, terminé haciendo esto:

Código HTML:
<html>
<head>
<title></title>
<style type="text/css">
body {margin:0;}
div.contenedor {width:600px;position:relative;background:#FF0000;margin:25px 0 0 0;overflow:auto;}
div.contenedor span {color:#FFFFFF;text-indent:20px;display:block;}
div.contenedor img {float:right;clear:both;margin:0;}
</style>
</head>
<body>
<div class="contenedor">
<img src="paseo1.jpg" width="115" height="86">
<span>
PRUEBA PRUEBA PRUEBA PRUEBA PRUEBA PRUEBA PRUEBA PRUEBA<br>
</span>
</div>
</body>
</html> 
Saqué el div.imagenes porque no siempre iban a ser del mismo tamaño, y aparte para no crear un div más, dejé los img así nomás dentro del div.contenedor.

De esta forma los atributos que vos me habias puesto en:

Cita:
div.imagenes {float: right;width: 115px;}
yo se los puse dentro del div.contenedor img

está bien igual, no ?
Nuevamente muchísimas gracias.