Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Can we do a vertical line with curve in CSS?

Ive been searching for an answer if we can create a vertical line with curve but was not able to have found anything, maybe the community can help me with this.

I like to create a line like this

enter image description here

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Is this what you are looking for?
border: px dashed color mixed with border-radius

div {
    margin: 5px;
    display: inline-block;
    width: 300px;
    height: 300px;
    border: 1px dashed #000;
    border-radius: 50px;
}
<div></div>

With only one dashed side:

div {
    margin: 5px;
    display: inline-block;
    width: 30px;
    height: 300px;
    border-top: 1px dashed #000;
    border-left: 1px dashed #000;
    border-radius: 50px 0 0 0;
}
<div></div>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading