Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
287 views
in Technique[技术] by (71.8m points)

css - Can anyone tell me how do I create a vertical line as shown in the image

image

Hello, I am designing a WordPress website. Can Somebody tell me How could I design a vertical small line as shown in the image attached.

question from:https://stackoverflow.com/questions/65939407/can-anyone-tell-me-how-do-i-create-a-vertical-line-as-shown-in-the-image

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I am assuming this is an unordered list with anchor tags?

you can do this by using the following css:

 ul > li > a{
   border-right: thin solid right;
   padding-right: 5px;
}
ul > li:last-child > a{
   border-right: none;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...