I think it's Friday so I'm having a brain fart. I can't for the life of me setup a page with a fixed left element <aside>
about 200px and a fluid width right element <article>
that takes up the remaining space.
Simple but I'm having issues with block, inline issues.
A push in the right direction would be great!
<style>
aside {
width: 200px;
}
aside, article {
display: inline-block;
}
</style>
<section>
<aside>
This is a section
</aside>
<article>
This is an article that should take up the remaininfg width
</article>
</section>