/* синтаксис
font: [font-style||font-variant||font-weight] font-size [/line-height]
font-family | inherit */
p { /* обязательные параметры */
font: 12pt/10pt sans-serif;
}
span { /* все параметры */
font: italic normal bold 100%/1.2em Tahoma, Arial, sans-serif;
}
div { /* наследует значение родителя */
font: inherit;
}