I tried to change the width but it only changes the width of the div.
How can I change the width of the image using css?
#photoTable {
background-image: url("Assets/Images/FrontImages/partyPhoto.jpg");
height: 628px;
vertical-align: top;
width: 704px;
}
Use the
background-sizeproperty. You can set it either to a width and height,coverorcontain.100% 100%might be closest to what you want, though.Doesn’t work in IE 8 or below.