我想设置图像的背景宽度和高度。
document.getElementById('outerModalPopupDiv').style.backgroundImage = "url('samandar_003.jpeg')";
document.getElementById('outerModalPopupDiv').style.backgroundRepeat = "no-repeat";
现在我想设置图像的宽度和高度。我知道background-size: 200px 50px;
设置高度和宽度,但是我不能使用相同的。我必须以上述格式设置宽度和高度。
如果我使用
document.getElementById('outerModalPopupDiv').style.background.size = "200px 500px";
它行不通。图像保持不变。
任何想法我怎样才能使它工作。