背景

设置背景色

background-color:black;

设置本地背景图片

<body background="image/01.PNG">

设置网络背景图片

<body style="background-image:url(http://pic4.nipic.com/20090821/2267807_180803075_2.jpg);">

设置背景图片铺满整个页面

<style>

body {                                

    overflow: hidden;

    position: fixed;

    100%;

    height:100%;

    background: url("./image/background/login_background.jpg") no-repeat;

    background-size:2300px;

}    

</style>

原文地址:https://www.cnblogs.com/7q4w1e/p/9548994.html