Please let me know whether it is possible to make a background in CSS to stretch or scale to fill its container.
You can use CSS3 property, background-size to achieve this.
background-size
#container { background-size: 100% auto; }
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
You can use CSS3 property,
background-size
to achieve this.