Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2017, 23:30
Avatar de Rafael
Rafael
Modegráfico
 
Fecha de Ingreso: marzo-2003
Mensajes: 9.028
Antigüedad: 21 años, 1 mes
Puntos: 1826
Respuesta: Ubicar elemento en la parte de abajo de un td

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/