1. 程式人生 > >9月12號知識點

9月12號知識點

通配符 back 設置 Y軸 round hello 遊覽 遊覽器 背景圖

1:今天,上課學到了 瀏覽器字體是 font-size:16px 也知道谷歌最小字體是10px 其他遊覽器為12px

2:有學到了一個選擇器叫通配符 選擇器 為* 是所有的標簽

3:知識點 背景 background

背景顏色:background-color:red, 簡寫是 background:red

背景圖片 background-image:url("路徑") 簡寫background:url();

標簽請求外面資源 有三種屬性 href src url

le9 以下給body設置background-color 不起作用 需要用bgcolor

<body

bgcolor="red">

<p>hello</p>

</body>

背景圖片平鋪:

1: 平鋪 遊覽器默認就是平鋪

2: 不平鋪 no-repeat

3: 平鋪 x軸或 y軸 background-repeat:repeat-x;

背景大小:

background-repeat:no-repeat;

background-size: 100% 100%

邊框 border

邊框圓角 border-radius 後面的值是具體的數字或者百分比

9月12號知識點