Покажи верстку и стили..
DlazderМудрец (16875)
9 месяцев назад
<body>
<header>
<nav></nav>
</header>
<style>
* {
box-sizing: border-box;
}
body {
background: gray;
}
header {
background: rgba(50, 50, 50, 0.7);
height: 100px;
}
nav {
position: fixed;
top: 0;
left: 0;
height: 100vh;
background: rgba(50, 50, 50, 0.7);
width: 50vw;
}
</style>
</body>