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
HTML
✕ ✕
✓ ✓
✖ ✖
✔ ✔
✗ ✗
✘ ✘
× ×
×
CSS
If you want to use the above characters from CSS (like i.e: in an :before
or :after
pseudo) simply use the escaped \
Unicode HEX value, like for example:
[class^="ico-"], [class*=" ico-"]{
font: normal 1em/1 Arial, sans-serif;
display: inline-block;
}
.ico-times:before{ content: "\2716"; }
.ico-check:before{ content: "\2714"; }
✕
HTML'\2715'
CSS like i.e: .clear:before { content: '\2715'; }
'\u2715'
JavaScript stringhttps://home.unicode.org/