I'm currently facing an issue with one of the background images in my div element. The CSS I'm using is as follows:
.myBox
{
background-image:url('....');
background-repeat:no-repeat;
background-size:cover;
}
The background image depicts a group of individuals. However, when I expand the width of my browser window, a portion of the people in the image gets cut off (due to the automatic resizing with 'background-size:cover').
My query is: Is there a method (or jQuery plugin) available to specify a particular section of the background image that will always remain visible regardless of window size, while still filling the entire element?