In HTML CSS how to make a vertical divider to separate two sections.
::before and :: after do not work. Any genius trick would be appreciated.
I also tried margins, but they arent as good. Maybe we can try one div before and one after the text, and give them minimum height and 1px horizontal padding and some bg color. Heres the needed output:
Vertical text divider css
2
Answers
I found the solution:
It works with the
::before
and::after
pseudo-elements as well.