1. 程式人生 > >添加背景圖片

添加背景圖片

加背景 -i 圖片顯示 img 屬性 添加 dex 設置 images

之前使用background-image屬性圖片顯示不出來,一直沒找到原因,只能使用<img>,修改index屬性來替代

圖片不顯示的原因:作為背景的圖片必須設置寬高。

<body>
    <div class="backgroundImage"></div>
</body>
body{
    background: #333;

}

.backgroundImage{
    background-image: url("../src/images/river.jpg");
    width: 1228px;
    height: 690px;
    margin: 0px auto;
}

添加背景圖片