也不一定得是按鈕,這本身是一個方形div
請問下如何用css實現以下按鈕選中后的效果
慕尼黑8549860
2018-07-22 07:59:51
TA貢獻1859條經驗 獲得超6個贊
.wrapper{ position: relative; }.wrapper::before{ content: "\2713"; position: absolute; right: 0; bottom: 0; z-index: 100; color: #72a9ed; font-size: 20px; height: 20px; line-height: 20px; }.wrapper::after{ content: ''; position: absolute; right: 0; z-index: 10; width: 0; height: 0; bottom: 0; border-right: 15px solid #fff; border-top: 10px solid transparent; border-left: 15px solid transparent; border-bottom: 10px solid #fff; }
舉報