Unicode character for “X” cancel / close?

前端 未结 17 2232
我在风中等你
我在风中等你 2021-01-29 17:18

I want to create a close button using CSS only.

I\'m sure I\'m not the first to do this, so does anyone know which font has an \'x\' the same width as height, so that it

17条回答
  •  广开言路
    2021-01-29 17:47

    This is for people who want to make their X small/big and red!

    HTML:

    close

    CSS:

    .red-x {
    color: red;
    }
    
    .big-x {
    font-size: 70px;
    text-align: center;
    }
    

提交回复
热议问题