Ver Mensaje Individual
  #12 (permalink)  
Antiguo 31/05/2011, 13:12
kseso?
Colaborador
 
Fecha de Ingreso: junio-2007
Mensajes: 5.798
Antigüedad: 16 años, 10 meses
Puntos: 539
Respuesta: Flotar abajo a la derecha.

Retomando el tema con las nuevas propuestas de CSS3 para la propiedad float.

Hace unas fechas, y vía twitter, me llegó este enlace:
CSS Floats and Positioning Level 3
W3C Editor's Draft 17 May 2011

Como se ve, a los valores ya conocidos para la propiedad float se añade el valor "positioned":
Cita:
positioned
(New) The element generates a block box that is positioned using the positioning properties. Content flows around the sides of the box, starting at the content directions start position. Note that the term "positioned float", as used in this document, is open for debate, and new suggestions are welcome.
Uno de los ejemplos que ilustran la propuesta es:
Código CSS:
Ver original
  1. #figure
  2.   {
  3.     width: 100px;
  4.     height: 100px;
  5.     background-color: blue;
  6.    
  7.     float: positioned;
  8.     position: absolute;
  9.     bottom: 50px;
  10.     left: 40%;
  11.   }
Que originaría el siguiente html:


Así que para el problema planteado por Furoya quedaría resuelto con cambiar los valores de top y bottom.
Eso sí, sólo será posible si la propuesta pasa los oportunos filtros y cuando los distintos navegadores le den soporte.