意思是: 字體12像素 行高 1.5em 字體 Arial
可以參考下面資料:
我們常用的font屬性有下面這六種:
font-style設定斜體 如:font-style: italic;
font-weight設定文字粗細 如:font-weight: bold;
font-size設定文字大小 如:font-size: 12px;
line-height設定行距 如:line-height: 150%;
color設定文字顏色(注意不是font-color) 如:color: red;
font-family設定字體 如:font-family : "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋體,sans-serif;
上述的屬性,我們可以概括寫在一行font屬性里。
需要注意的是color屬性我們需要單獨定義
body{
font: italic bold 12px/1.5 "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋體,sans-serif;
}