Cannot add background image to my

2019-09-16 02:19发布

I have a div with more buttons and I cannot add an image to it.

Html:

<div class="menu_border" style="height: 460px; width: 290px;">

</div>

CSS:

.menu_border {
     float: left;
     border: 5px groove;
     margin-left: 70px;
     text-align: center;
     background-image:url('images\generale\bkgmenu.jpg');
}

My css and source codes are in the main folder. There is the folder images->generale and the images. I've tested the path, is correct. I've tried to add the image as normal <img> and it worked.

It does not work as background.

1条回答
\"骚年 ilove
2楼-- · 2019-09-16 02:29

ur code needs to change like this

background-image:url('images\generale\bkgmenu.jpg');

to

background-image:url('images/generale/bkgmenu.jpg');

image will taken this format

查看更多
登录 后发表回答