Pure css close button

前端 未结 11 492
[愿得一人]
[愿得一人] 2020-12-12 19:51

JSFiddle

Is there any way to make something like the X on that link with pure css?

\"enter

11条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-12 19:59

    Edit: Updated css to match with what you have..

    DEMO

    HTML

    X

    CSS

    .close-btn {
        border: 2px solid #c2c2c2;
        position: relative;
        padding: 1px 5px;
        top: -20px;
        background-color: #605F61;
        left: 198px;
        border-radius: 20px;
    }
    
    .close-btn a {
        font-size: 15px;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }
    

提交回复
热议问题