I would like to link some CSS circles with a vertical line between them.
I tried using the :after pseudo-element selector as follows:
.circle { height: 45px; width: 45px; border-radius: 50%; border: 2px solid; position: relative; border-color: #889EB7; } .circle:before { content: ""; display: block; position: absolute; z-index: 1; left: 18px; top: 0; bottom: 0; border: 1px dotted; border-width: 0 0 0 1px; }
But I do not get any result.
Photo for reference on what I would like to perform:

source share