试图在菜单边做一个尖角,我使用了border-radius
.right-section-top-bar.row { background-color: #44d2ff; border-radius: 0 0 0 100px; }
但它没有给出尖锐的角落.但我不想要那个激进的部分.我也尝试制作一个三角形,然后用它来定位它,但我认为它不是最好的解决方案可能是之前和之后的一些事情.
你可以使用像这样的css :before
伪元素实现这一点:
div:before {
content: "";
width: 0px;
height: 0px;
border-style: solid;
border-width: 0px 40px 40px 0px;
border-color: transparent #44d2ff transparent transparent;
position: absolute;
top: 0px;
margin-left: -40px;
}
div {
position: relative;
left: 100px;
width: 200px;
height: 40px;
background: #44d2ff;
}