9.12 h5日記
9.12
知識點補充:
屬性繼承例子,color、font(font-size/style/family/weight)
1、瀏覽器的預設字型大小是16px,谷歌瀏覽器的最小字型是10px,其他瀏覽器的最小字型是12px。
2、萬用字元選擇器 “* ”, 即選中body裡所有的標籤。
3、background 背景
A:背景顏色(background-color:red;)簡寫(background:red;)
B:背景圖片(background-img:url("路徑"))
C:背景圖片平鋪(background-repeat:no-repeat;)
(1)瀏覽器預設平鋪
(2)不平鋪 no-repeat
(3)平鋪X軸,平鋪Y軸 (background-repeat:repeat-x;)
D:背景大小(background-size:100% 100%)
背景大小的屬性值的寫法:可以設定具體的大小 200px 200px;(auto 自適應 一般做屬性值)
E:背景位置(background-position:100px 100px;)
整個背景簡寫
4、border 邊框
{border:color 1px dashed ;}