I'm trying to create a vertical line using CSS with multiple points. However, I'm not quite sure how to do that.
Can someone help me solve this problem?
I want to create something like this here.
You can use SVG images here.
I hope the code below can help you solve your problem. If you need more you can do a Google search using the Vertical Wizard and get additional code like this:
Vertical Wizard
ul { list-style: none; margin: 0; padding: 0; position: relative; } ul:before { content: ""; display: inline-block; width: 2px; background: red; position: absolute; left: 3px; top: 5px; height: calc(100% - 10px); } ul li { position: relative; padding-left: 15px; margin-bottom: 15px; } ul li:before { content: ""; display: inline-block; width: 8px; height: 8px; background: red; position: absolute; left: 0; top: 5px; border-radius: 10px; }
You can use SVG images here.
I hope the code below can help you solve your problem. If you need more you can do a Google search using the
Vertical Wizard
and get additional code like this: