Pure css close button

前端 未结 11 493
[愿得一人]
[愿得一人] 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 20:06

    I become frustrated trying to implement something that looked consistent in all browsers and went with an svg button which can be styled with css.

    html

    
        
        
        
    
    

    css

    svg {
        cursor: pointer;
        height: 24px;
        width: 24px;
    }
    svg > circle {
        stroke: black;
        fill: white;
    }
    svg > path {
        stroke: black;
    }
    svg:hover > circle {
        fill: red;
    }
    svg:hover > path {
        stroke: white;
    }
    

    http://jsfiddle.net/purves/5exav2m7/

提交回复
热议问题