18 1 / 2012

Muy bueno. El login de Mac OS X Lion con CSS3.

Tags:

Enlace permanente 2 notas

05 9 / 2011

El tema por defecto de WordPress adaptable a distintas resoluciones/dispositivos con @media queries

* Creo que sigue siendo el tema por defecto de WordPress…

05 9 / 2011

Tooltips (con su piquito) usando :after y :before.

Tooltips con CSS3

04 9 / 2011

Indeed, usually your media queries should apply to all media types, so instead of this:

@media screen and (min-width: 500px) { ... }

You can do this:

@media all and (min-width: 500px) { ... }

Even better, the spec says the all keyword can even be left out – it’s the implied default – leaving you with this:

@media (min-width: 500px) { ... }

Never miss an opportunity to shave a few bytes off your code and type a few characters less!

Vía Bricss.net