CSS可以通過修改class來對網(wǎng)頁元素進(jìn)行樣式編輯,具體方法如下:
/*給class為example的元素設(shè)置字體顏色為紅色*/ .example { color: red; }
上述代碼中,通過選擇器“.example”來選中class為example的元素,并設(shè)置其字體顏色為紅色。
/*同時(shí)給class為example1和example2的元素設(shè)置背景顏色和字體顏色*/ .example1, .example2 { background-color: yellow; color: blue; }
上述代碼中,通過選擇器“.example1, .example2”來同時(shí)選中class為example1和example2的元素,并設(shè)置其背景顏色為黃色,字體顏色為藍(lán)色。
使用class進(jìn)行樣式編輯的好處是可以同時(shí)對多個(gè)元素進(jìn)行樣式設(shè)置,避免了重復(fù)編輯單個(gè)元素的麻煩。