下面是我用来使背景图像调整大小的代码,其中包含DIV的大小。但似乎代码有问题..请有人帮助我。
.Ques // DIV
{
background:no-repeat url(https://mail.google.com/mail/help/images/greybtn.png) 0 0;
width: 400px;
height: 300px
}
.Ques.background-image
{
width: 100%;
position: absolute;
top: 0;
left: 0;
}
答案 0 :(得分:0)
嗯尝试:
.Ques // DIV
{
background:no-repeat url(https://mail.google.com/mail/help/images/greybtn.png) 0 0;
background-size:auto;
width: 400px;
height:300px;
}
希望只能将图像拉伸到自然尺寸或更小,祝你好运!