i need to add vertical line between text in HTML or JavaScript
the description for what i need exactly its explain with this picture
how to add line before CHECKPOINT and FINAL like in the pic
i need to add vertical line between text in HTML or JavaScript
the description for what i need exactly its explain with this picture
how to add line before CHECKPOINT and FINAL like in the pic
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>
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>