I am facing two issues.
First issue is that my background gradient is not taking up the entire length of the page. Instead it is repeating.
Second issue is that my aside element is not taking up the entire height of the page.
HTML and CSS can be viewed in jsfiddle: https://jsfiddle.net/mcsjz4j1/
.aside {
width: 20%;
float: left;
color: black;
background-color: #f7f7f7;
height: 100%;
}
.list {
width: 80%;
float: right;
color: white;
height: 100%;
}
Thanks in advance.