1. 程式人生 > >body和html背景色區別

body和html背景色區別

idt 設置 http gist wid near 分享 image htm

1.當body背景色設置為紅色,html設置為圖片時

body {
     background-color: red;
 }

html {
    height: 100%;
    background: linear-gradient(rgba(196, 102, 0, 0.2), rgba(155, 89, 182, 0.2)),
    url("../imgs/register.jpg") no-repeat 100%;
}

技術分享圖片

2.當html背景色設置為紅色,body設置為圖片時

html {
     background-color: red;
 }

body {
    height: 
100%; background: linear-gradient(rgba(196, 102, 0, 0.2), rgba(155, 89, 182, 0.2)), url("../imgs/register.jpg") no-repeat 100%; }

技術分享圖片

body和html背景色區別