Nav bar not covering while vertical area

the nav bar just ends but I want it to cover whole area

https://codepen.io/advitya-sharma/pen/WNQBOga

Try changing the position to fixed

#navbar {
    float: left;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: teal;
    width: 200px;
    height: 100%;
    border-right: solid;
}
1 Like