-1

i need to add vertical line between text in HTML or JavaScript

the description for what i need exactly its explain with this picture

i need like this pic

how to add line before CHECKPOINT and FINAL like in the pic

user2314737
  • 27,088
  • 20
  • 102
  • 114

2 Answers2

1

li {
 line-height:100px;
 width:100px;
 text-align:center;
 display:inline-block;
 border-right:1px solid #ccc;
}
ul li:last-child {
 border-right: 0px;
}
<ul>
  <li>Something</li>
  <li>Something</li>
  <li>Something</li>
  <li>Something</li>
  <li>Something</li>
</ul>
Brad
  • 8,044
  • 10
  • 39
  • 50
0
li{
border:0px solid #ddd;
border-right:2px solid #ddd;
}
ul li:last-child{
border:0;

html

<ul type=none>
<li> menu1</li>
<li>menu2</li>
</ul>

fiddle