I am experimenting with a navigation bar and currently using a clip-path: polygon for my links. Ideally I would want to round out my top-left corner. I've been searching for a minute, but couldn't come up with anything that works. Any ideas?
Code below:
.menu {
width: 100%;
float: right;
height: 50px;
clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
background-color: #1A2434;
}
<div class = "menu"></div>