Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/02/2011, 16:07
Fraannn
 
Fecha de Ingreso: mayo-2010
Mensajes: 10
Antigüedad: 13 años, 11 meses
Puntos: 1
Respuesta: Div con bordes redondeados y degradado

Para degradado uso esto:
background: #666666;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#666666), to(#000000));
background: -moz-linear-gradient(#666666, #000000);
background: linear-gradient(#666666, #000000);
-pie-background: linear-gradient(#666666, #000000);

Para sombras uso:
box-shadow: 5px -9px 3px #333;
-webkit-box-shadow: #666 0px 2px 3px;
-moz-box-shadow: #666 0px 2px 3px;

y para esquinas redondeadas:

border.radius: 15px 15px 15px 15px;
-moz-border-radius:15px 15px 15px 15px;
-webkit-border-radius:15px 15px 15px 15px;
behavior:url(border-radius.htc);