1. 程式人生 > >font標籤及其屬性

font標籤及其屬性

與font標籤有關的css樣式屬性:

1、font-family 定義字型

font-family:"微軟雅黑","arial";

2、font-size 字型大小

font-size:18px;
			font-size:150%;
			font-size:xx-small,x-small,small,medium,large,x-large,xx-large;
			font-size:smaller,larger;

3、font-style 字型樣式

font-style:normal,italic,oblique;

4、font-weight 字型粗細
font-weight:normal,bold,bolder,lighter,100-900;
5、font-variant 使輸入不受大小寫限制
font-variant: normal,small-caps;

最後,font屬性的簡寫
font:  bold italic 18px  arial ;