我想剪切一个按钮的两个角,边框为3px,没有背景,如下例所示,最好只有CSS。我尝试了很多选项并在网上搜索,但到目前为止没有运气......你们知道实现这一目标的方法吗?谢谢你的回复!
到目前为止我得到的是:
a.button{
padding: 10px 18px;
border: 3px solid $blue;
text-transform: uppercase;
font-size: 15px;
border-top-left-radius: 15px;
border-bottom-right-radius: 15px;
}
问题在于这会导致半径角,我希望角是直切。
答案 0 :(得分:6)
这应该可以帮助您入门。
您可以根据自己的需要进行优化。
.button {
display: inline-block;
text-transform: uppercase;
text-decoration: none;
padding: 10px 20px;
border: 3px solid #3777BC;
margin: 20px;
position: relative;
color: #3777BC;
letter-spacing: 1px;
}
.button:before {
content: '';
width: 20px;
height: 20px;
background: #fff;
border: 3px solid #3777BC;
transform: rotate(45deg);
position: absolute;
border-top: 0;
border-left: 0;
border-bottom: 0;
top: -12px;
left: -13px;
}
.button:after {
content: '';
width: 20px;
height: 20px;
background: #fff;
border: 3px solid #3777BC;
transform: rotate(-132deg);
position: absolute;
border-top: 0;
border-left: 0;
border-bottom: 0;
top: auto;
right: -13px;
bottom: -12px;
}
<a href="#" class="button">Newsletter Signup</a>