jquery – 带自定义角落的html按钮

我目前正在使用Bootstrap为网站设计导航栏.主导航栏和第一个直接位于第一个导航栏下,见图片:

《jquery – 带自定义角落的html按钮》

我设法用简单的CSS绕过按钮底部的角落但是对于顶角我想要实现这样的事情:

《jquery – 带自定义角落的html按钮》

有没有办法在CSS / jQuery或其他插件中执行此操作?

编辑:

该按钮的HTML是:

<button type="submit" class="btn navbar-btn second-navbar-button">
    <span class="mdi mdi-eye second-navbar-icon"></span>
    <span class="second-navbar-name">&nbsp;Overview</span>
</button>

按钮的CSS如下所示

.second-navbar-button {
  font-size: 26px;
  border: none;
  background-color: transparent;
  color: #ec9f14;
  margin: 0 19px 0 19px;
  padding: 0px 8px 0px 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;}

按钮之间有空隙,因此操作相邻按钮的角落将无法正常工作.

干杯,

Trammy

最佳答案 看这个例子:

.button{
    border:1px solid red;
    border-bottom:0;
    width:80px;
    height:40px;
    margin:30px;
    position:relative;
    -moz-border-radius:5px 5px 0 0;
    -webkit-border-radius:5px 5px 0 0;
}
.button:after,
.button:before{
    content:'';
    width:40px;
    height:30px;
    border:1px solid red;
    position:absolute;
    bottom:-3px;
    border-top:0;
}
.button:after{
    border-left:0;
    -moz-border-radius:0 0 5px 0;
    -webkit-border-radius:0 0 5px 0;
    left:-41px;
}
.button:before{
    border-right:0;
    -moz-border-radius:0 0 0 5px;
    -webkit-border-radius:0 0 0 5px;
    right:-41px;
}
<div class="button">text</div>
点赞