我想創建一個'簡單'的按鈕形狀與CSS pseudeo:之後/:在課前。與CSS的按鈕形狀
我讀過有關,一些博客和文章,但沒有形狀看起來像我的。所以我嘗試了一下。但是,這是我的東西,我無法弄清楚。
button{
height: 50px;
width: 250px;
border: solid 2px #000;
border-bottom: none;
background: orange;
}
button:after{
height: 0;
width: 125px;
content:"";
position: absolute;
border-top: transparent 30px
border-right: solid 2px #000;
}
button:before{
height: 0;
width: 125px;
content:"";
position: absolute;
border-top: transparent 30px
border-left: solid 2px #000;
}
<button>Let's do it</button>
有人可以給我一個提示?