Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/04/2013, 14:01
Avatar de bryanjhv
bryanjhv
 
Fecha de Ingreso: marzo-2013
Ubicación: Cajamarca
Mensajes: 35
Antigüedad: 11 años, 1 mes
Puntos: 3
Pregunta ¿Puedo minimizar así el código?

Buenas tardes a todos los que lean esto.
Quisiera saber si, teniendo un código CSS así:
Código CSS:
Ver original
  1. body {
  2.     line-height: 1;
  3.     color: #696969;
  4.     background: #F1F1F1 url('../img/sitio/fondo.png');
  5.     font-family: Arial, Helvetica, sans-serif;
  6.     font-size: 100%;
  7. }
puedo minimizarlo con su shorthand así:
Código CSS:
Ver original
  1. body {
  2.     background: #F1F1F1 url('../img/sitio/fondo.png');
  3.     font: 100%/1 Arial, Helvetica, sans-serif;
  4.     color: #696969;
  5. }
.
Gracias.