D
D
deadshumz2020-06-25 15:22:23
css
deadshumz, 2020-06-25 15:22:23

Separation between words?

How to make vertical stripes between words, if through symbols, then how to adapt them? (To avoid them when using collapse?)
Here is an example:
5ef496c76f715781015177.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
meaqese, 2020-06-25
@meaqese

<nav>
  <a href="">Products</a>
  <a href="">Services</a>
  <a href="">Contacts</a>
</nav>

a {
  text-decoration: none;
  color: black;
}

a::after {
  content: "|";
  margin-left: 5px;
}

nav a:last-child::after {
  content: "";
}

Demo: https://codepen.io/meaqese/pen/VweWBvp

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question