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

How to make vertical line like this?

I have a contact info list like this: Example

How to make the vertical line that separates email and hotline like in the picture, many thank

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 :

You can use the pipe character from your keyboard. It looks like that:

|

-OR-

You can split the line into 2 elements and add a border to one of them.
Just an example:

HTML

<div class="left">Email</div><div class="right">Hotline</div>

CSS

.left { display: inline-block; border-right: 1px solid black; }
.right { display: inline-block; }
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