Adding background image to div using CSS

后端 未结 8 1748
终归单人心
终归单人心 2020-12-24 02:09

I have been trying to add background image to a div class using CSS, but I didn\'t have any success.

HTML code:

8条回答
  •  情书的邮戳
    2020-12-24 02:22

    Specify a height and a width:

    .header-shadow{
        background-image: url('../images/header-shade.jpg');
        height: 10px;
        width: 10px;
    }
    

提交回复
热议问题