А
у нас есть
html:
<nav class="nav">
<a class="nav__item" href="#">nav item</a>
<a class="nav__item" href="#">nav item2</a>
</nav>
css:
.nav {
display: flex;
}
.nav__item {
margin-right: 30px;
dispaly: block;
position: relative;
}
.nav__item:last-child {
margin:-right: 0;
}
.nav__item:after {
width: 25px;
height: 1px;
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
background-color: #fff;
content: '';
}


