Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/06/2017, 06:14
Avatar de LordJhony
LordJhony
 
Fecha de Ingreso: septiembre-2010
Mensajes: 472
Antigüedad: 13 años, 8 meses
Puntos: 24
Respuesta: Ubicar elemento en la parte de abajo de un td

Cita:
Iniciado por Rafael Ver Mensaje
Pon un position absolute dentro de un position relative:

Código CSS:
Ver original
  1. td {width: 150px; height: 120px; background-color: red; position: relative;}
  2. td>span {background-color: green; position: absolute; right: 0; bottom: 0;}

https://jsfiddle.net/6fn447oj/
Muchas gracias... Era lo que necesitaba...