html.de - Container passt sich nicht an | Demo #2

by SpiceLab

HTML

<div id="outer-section">
  <section>section<br />section<br />section<br />section<br /></section>
  <aside>aside</aside>
</div>

CSS

#outer-section {
    display:-webkit-flex;
    display:flex;
    -webkit-align-items:stretch;
    align-items:stretch;
    border-left:1px solid grey;
    border-right:1px solid grey;
    margin-top:0em;
    background-color:white;
    border-bottom:1px solid grey;
    height:auto
    }
section {
    width:68em;
    border:1px solid transparent;
    padding:1em;
    height:auto;
    padding-left:2em
    }
aside {
    height:10em;
    border-left:1px solid grey;
    padding:1em;
    height:auto
    }