vertical line between two divs

Solutions on MaxInterview for vertical line between two divs by the best coders in the world

showing results for - "vertical line between two divs"
Philipp
18 Jan 2019
1.line {
2    position: relative;
3}
4.line:after {
5    content: '';
6    position: absolute;
7    right: 0;
8    border-right: 1px solid #cfc7c0;
9    top: 10%;
10    bottom: 10%;
11}