Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/01/2011, 17:31
Avatar de uikekarallo
uikekarallo
 
Fecha de Ingreso: diciembre-2009
Ubicación: Galicia
Mensajes: 338
Antigüedad: 14 años, 4 meses
Puntos: 16
Respuesta: Imagen y texto en extremos opuestos

con posicionamiento absoluto puedes lograrlo sin dificultad. igual te sirve:

Código HTML:
<div style="position: relative; width: auto; height: 100%;">
  <p style="padding: 0; margin: 0; position: absolute; left: 0; bottom: 0;">texto</p>
  <img style="position: absolute; right: 0; bottom: 0;" src="/img/hola.jpg" alt="hola" />
</div> 
y más eficiente aún utilizando una hoja de estilos :)

un saludo.