Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/05/2005, 14:20
andyto
 
Fecha de Ingreso: septiembre-2004
Mensajes: 19
Antigüedad: 19 años, 7 meses
Puntos: 0
Alinear dos imágenes a la derecha

Hola a todos.

¿Cómo puedo alinear dos imagenes a la derecha dentro de un párrafo?
He usado float: right pero no funciona:

.imgD
{
border-right: #ab6d00 thin solid;
border-top: #ab6d00 thin solid;
float: right;
margin-left: 1em;
border-left: #ab6d00 thin solid;
margin-right: 1em;
border-bottom: #ab6d00 thin solid;

}



<img class="imgD" id = "imgfunA" width ="250" height="150" alt="" src="" runat="server"/>
<img class="imgD" id = "imgfunB" width ="250" height="150" runat="server" alt="" src="" runat="server"/>


<p class ="texto" id ="funciones">
ACA va el texto la imágen </p>

Lo muestra de la siguiente manera

texto texto texto [Imagen] [Imagen]
texto texto texto
texto texto texto



Pero yo quiero que se vea :

texto texto texto [Imagen]
texto texto texto
texto texto texto [Imagen]

Espero que me ayuden gracias.