Algunas personas colocamos los estilos de fuentes así:
Código:
Ahora miren esto, da el mismo resultado:.fuente {
font-size: 12px;
font-family: Arial, Helvetica, Sans-serif;
font-weight: bold;
line-height: 120%;
font-variant: uppercase;
font-style: italic;
}
Código:
¿Tremendo no? Cada elemento debe obedecer a un orden específico y es éste:.fuente {
font: italic uppercase bold 12px/120% Arial, Helvetica, Sans-serif;
}
Código:
Donde.fuente {
font: [1] [2] [3] [4]/[5] [6];
}
1. font-style
2. font-variant
3. font-weight
4. font-size
5. line-height
6. font-family

Más info: http://www.eyeofdesign.com/css/font.php

Este tema le ha gustado a 1 personas