horizontal center multiple lines in a div css code example
Example 1: vertical line between two divs
.line {
position: relative;
}
.line:after {
content: '';
position: absolute;
right: 0;
border-right: 1px solid #cfc7c0;
top: 10%;
bottom: 10%;
}
Example 2: horizontally center multi line text
.Title {
text-align: center;
}