Bonjour,
Je ne comprends pas pourquoi nav empiete sur header quand je mets un position: fixed pour header?
Si vous avez la solution ça serait sympa!
Merci
Je ne comprends pas pourquoi nav empiete sur header quand je mets un position: fixed pour header?
body {
display: flex;
flex-direction: column;
}
.wrapper {
flex: 1 1 auto;
display: flex;
}
nav {
width: 10em;
}
nav {
order: -1;
}
nav {
padding: 1em;
margin: 1em;
}
header {
position: fixed;
background: #ffeebb;
width: 10em;
margin: 1em;
}
nav {
background: #ccccff;
}
<header>header</header>
<div class="wrapper">
<nav>nav</nav>
<aside></aside>
</div>
Si vous avez la solution ça serait sympa!
Merci