跳转至

CSS 层叠样式表

选择器

/* id 选择器 */
#root {

}

/* class 选择器 */
.h1 {

}

/* 属性选择器 */
[attr] {

}

/* 通配选择器 */
* {

}