返回列表 發帖

CSS 字體屬性 (一)

本帖最後由 陳育霖 於 2023-8-5 02:59 編輯

字形名稱: font-family
  1. h1{
  2.     font-family:"Arial";
  3. }
複製代碼
字形大小: font-size
  1. p{
  2.     font-size=24px;
  3. }
複製代碼
字形樣式: font-style
normal 正常、italic 斜體、oblique 傾斜體
  1. p{
  2.     font-style=italic;
  3. }
複製代碼
字體樣式: font-weight
normal 正常、bold 粗體字、bolder 更粗的字體、lighter 更細的字體、100-900(400為normal、700為bold)
  1. p{
  2.     font-weight:bold;
  3. }
複製代碼

返回列表