I'm trying to add a background image to the center of my webpage that spans the entire width of the browser.
After finishing my page layout, I realized I needed to jazz it up by placing an image in the background. But, my attempt to center it and make it bigger than the screen left me scratching my head.
If you're as lost as I was, check out this Fiddle I put together.
The goal is to position a background image on the wrapper while centering it between two divs, regardless of its size in relation to the screen.
<div class="wrapper">
<div class="container">
<div class="left">
Left content
</div><div class="right">
right content
</div>
</div>
</div>
Hopefully, this setup now makes sense.