I\'ve made a simple site with a #container div that is parent to two divs: #left and #right, by using Grid Layout:
Is there an
You can do something like this
here is the fiddle
here is the code
body {
margin: 0 0 0 0;
}
#container {
display: grid;
}
.section {
padding: 5% 5% 5% 5%;
}
#left {
background-color: aquamarine;
height: 100%;
position: fixed;
width: 50%
}
#right {
background-color: beige;
overflow: scroll;
width: 50%;
right: 0;
position: absolute;
}