带有自定义角落的html按钮

时间:2016-04-05 07:00:54

标签: jquery html twitter-bootstrap button rounded-corners

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

enter image description here
我设法用简单的CSS绕过按钮底部的角落但是对于顶角我想要达到这样的目的:

enter image description here
有没有办法在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

1 个答案:

答案 0 :(得分:1)

见这个例子:

&#13;
&#13;
.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;
}
&#13;
<div class="button">text</div>
&#13;
&#13;
&#13;