Is it possible to make a layout with flexible width content and a fixed size sidebar? Example
<body>
<header></header>
<article></article>
<aside></aside>
</body>
I want to leave body with 100% width, aside always with 300px and article should take the difference regardless of the size / resolution of who is accessing. And preferably only with css, without javascript.
Ps. case relevant, I am considering this example, but wanted to leave the fixed size bar link
Thanks in advance for your attention