I need help creating a unique menu list with a white border design. The borders should all be straight by default, except for the last border which must be slanted.
ul {
background-color: #183650;
}
li {
list-style: none;
display: inline-block;
border-left: 1px solid #FFF;
color: #FFF;
text-transform: uppercase;
padding: 5px 10px;
font-size: 12px;
text-align: center;
}
li:first-child {
border: none;
}
This is what I have currently:
https://i.sstatic.net/qH3Td.png
My goal is to achieve this look:
https://i.sstatic.net/uw7vr.png
The border style should simply be border-left: 1px solid #FFF;
.