在昨天我們也正地進入了CSS的部分,我們這邊很不一樣的就是我們先帶大家進入色彩的部分,那我們正式進入今天的主題~
/* color name */
h1{
color: Darkcyan;
}
/* hex code */
h2{
color: #ee3e80;
}
/* rgb value */
p{
color: rgb(100,100,90)
}
/* color name */
h1{
background-color: Darkcyan;
}
/* hex code */
h2{
background-color: #ee3e80;
}
/* rgb value */
p{
background-color: rgb(100,100,90)
}