Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

vertical line between two divs

.line {
    position: relative;
}
.line:after {
    content: '';
    position: absolute;
    right: 0;
    border-right: 1px solid #cfc7c0;
    top: 10%;
    bottom: 10%;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #vertical #line #divs
ADD COMMENT
Topic
Name
7+5 =