Can anyone assist me with scaling background image size properly? code: http://codepen.io/AnilSimon123/pen/JRBRZa
Below is the code snippet:
.bgimage{
background:url('http://www.thedesignlove.com/wp-content/uploads/2012/08/free-blue-abstract-vector-background-6.jpg');
background-size:100% auto;
height:700px;
width:100%;
background-position:top center;
background-repeat:no-repeat;
}
The image has dimensions of 588 x251 px.
I am looking to stretch the image along the width while maintaining its original height and keeping the height of the container at 700px. The height of the image varies dynamically.
Thank you, Anil Simon