Is it possible to make a element contain a background image, and if so, how would I go about doing this?
element contain a background image, and if so, how would I go about doing this?
Use this style to get a centered background image without repeat.
.bgImgCenter{ background-image: url('imagePath'); background-repeat: no-repeat; background-position: center; position: relative; }
In HTML, set this style for your div: