сделать div на всю ширину окна браузера внутри div с фиксированной шириной

by Dimox

HTML

<div class="wrapper">
    <div class="inner"></div>
</div>

CSS

.wrapper {
    width: 600px;
    background: #EEE;
    margin: 0 auto;
    padding: 200px 0 500px 0;
}
.inner {
    position: absolute;
    left: 0;
    width: 100%;
    height: 300px;
    background: #B4F1B4 url(http://placehold.it/300x300) no-repeat;
}