I have a group of (pseudocode) elements that look like this:
<div id="parent">
<a><div id="child1 class="children"></a>
...
<a><div id="child-n class="children"></a>
</div>
These elements are styled as follows:
.children{background:url(img/child-n.png)}
.parent{background:url(img/parent.png); width: 100%;}
The goal is to make both the parent and children scale their width according to the window width, while also ensuring all children maintain their relative position within the parent.