Re: Vertical line for one page
Hi,
I applied this code for one page to have one line going down the entire page. However it is applied to my other pages. Is there a way to keep the code applied to a single page?
The Code:
<div class="line"></div>
.line {
position: fixed;
width: 1px;
height: 100vh;
left: 21.5vw;
background: black;
}
Thank You!