body和html背景色区别

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%;
}

 

posted @ 2018-06-12 18:43  xxllj  阅读(367)  评论(0编辑  收藏  举报