2019-09-05 style.css

h1{
    color: yellow;
    font-size: 60px;
}
/* div{
    width: 400px;
    height: 200px;
    background-color: brown;
}

#abc{
    color:blue;
    font-size: 50px;
}
#def{
    color:green;
    font-size: 30px;
}
.box1{
    width: 200px;
    height: 200px;
    background-color: rgb(15,216,15)
}
.box2{
    width: 100px;
    height: 200px;
    background-color: red;
} */
/* 子元素选择器 */
/* h1>strong{
    color:blueviolet;
} */

/* 后代选择器 */
/* h1 >em > strong{
    color: red;
} */

h1 em {
    color: red;
}

/* 分组选择器 */
/* h1,h2,h3 {
    color: blue;
}

a:link{color: blue}
a:visited{color: brown}
a:hover{color: burlywood}
a:active{color: chartreuse} */


你可能感兴趣的:(2019-09-05 style.css)