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.