html_css结合方式以及选择器






html_css结合方式极其选择器











第1种结合方式

第2种结合方式

第3种结合方式,标签选择器

第3种结合方式,class选择器

第3种结合方式,id选择器






/* css文件 */
@CHARSET "UTF-8";


/* 标签选择器 */
div {
background: black;
color: purple;
}
/* class选择器  */
.three {
background: purple;
color: white;
}


/* id选择器  */
#three {
background: yellow;
color: red;
}

你可能感兴趣的:(html)