Does anyone know how to make a nested child element the full width of the browser? I've tried using position absolute and setting left and right to 0, but it's not working as expected.
You can see what I'm trying to do in this fiddle: http://jsfiddle.net/MrHunter/r2tr6yxu/
.child_full_width {
position: absolute;
left: 0;
right: 0;
width: 100%;
}
I also attempted to use jQuery to achieve full width, but there seems to be some discrepancy between the content and the left side of the screen. Any suggestions on how to solve this issue?