На скорую руку так:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<nav>
<ul>
<li><a href="#">Пункт 1</a></li>
<li><a href="#">Пункт 2</a></li>
<li><a href="#">Пункт 3</a></li>
<li><a href="#">Пункт 4</a></li>
<li><a href="#">Пункт 5</a></li>
</ul>
</nav>
</body>
</html>
CSS
ul {
display: flex;
flex-direction: row;
align-items: center;
margin: 0;
padding: 0;
list-style: none;
}
li {
position: relative;
margin: 0 5px;
padding: 10px;
width: 150px;
text-align: center;
color: white;
}
li:after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: block;
-webkit-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-o-transform: skew(-20deg);
background: black;
}
a {
position: relative;
z-index: 9999;
font-weight: normal;
text-decoration: unset;
color: white;
}