Is there a way to create a layout similar to this design: https://i.sstatic.net/yjkeD.png
For a demonstration, see here: http://jsfiddle.net/ymC82/
Current HTML code:
<div class="wrapper">
<aside>
Sidebar
</aside>
<article>
Content
</article>
</div>
Current CSS code:
*{
margin: 0;
padding: 0;
}
.wrapper{
max-width: 600px;
margin: 0 auto;
}
aside{
padding: 50px 0;
width: 30%;
float: left;
display: inline-block;
background: #aaa;
}
article{
padding: 50px 0;
width: 70%;
float: left;
display: inline-block;
background: #777;
}
The red line represents the container. Can anyone assist with this?