Div背景图像消失

时间:2013-10-19 09:13:45

标签: html css

您好我正在尝试将图像添加为div的背景。它在窗口最大化时有效,但是当我改变窗口的大小时,图像就会消失。

你能否让我知道我哪里出错了。

background-image: url('../Images/IPCC-Tile.jpg');
background-color: #FFFFFF;
background-repeat: no-repeat;
background-position: center center;
position: absolute;
width: 15%;
height: 35%;
top: 30%;
left: 2%;
overflow:visible;
谢谢。

2 个答案:

答案 0 :(得分:4)

这应该有效:

background-image: url('../Images/IPCC-Tile.jpg');
background-color: #FFFFFF;
background-repeat: no-repeat;
background-position: center center;
background-size:contain; 
position: absolute;
width: 15%;
height: 35%;
top: 30%;
left: 2%;
overflow:visible;

background-size的值设为covercontain,无关紧要。

答案 1 :(得分:1)

试试这个:

background:#ffffff url('../Images/IPCC-Tile.jpg') no-repeat center center;

或者this will help you as well