How do I make a vertical line from the top to bottom of my site. That should cover the whole height of my site
I have tried height: 100%;, but they disappear.
.vertical-hr {
margin-top: -8px;
width: 0.1%;
height: 100%;
float: right;
background-color: black;
}
<div class="vertical-hr"></div>