Answers for "horizontal center multiple lines in a div css"

CSS
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%;
}
Posted by: Guest on May-11-2020
0

horizontally center multi line text

.Title {
	text-align: center;
}
Posted by: Guest on July-17-2020

Code answers related to "horizontal center multiple lines in a div css"

Browse Popular Code Answers by Language