84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
I have a list of contact information like this: Example
How to make a vertical line that separates email and hotline like in the picture, thank you very much
You can use the pipe character on your keyboard. It looks like this:
|
-or-
You can split the row into two elements and add a border on one of them. This is just an example:
HTML
<div class="left">电子邮件</div><div class="right">热线</div>
CSS
.left { display: inline-block; border-right: 1px solid black; padding: 0 10px; } .right { display: inline-block; padding: 0 10px; }
You can use the pipe character on your keyboard. It looks like this:
-or-
You can split the row into two elements and add a border on one of them. This is just an example:
HTML
CSS