css

font color

h1 {
    /* font color */
    color: black;
    color: rgb(143, 88, 88);
    color: rgba(117, 39, 39,0.8);
}

background color

/* background color */
body {
    background:blue;
    background: url(http://);
    background-repeat: no-repeat;
    background-size: cover;
}
div {
    background: blue;
}
p {
    color: blue;
}

border

selector

font styles

Box Model

hover

hover: (盘旋)鼠标指向的时候颜色发生变化

transition

渐变

display

Last updated

Was this helpful?