As of v4.7.0, FontAwesome does not have a thin close (x) icon.
<i class="fa fa-times fa-2x" aria-hidden="true"></i>
results in, for example,
To display a thin icon instead,
add this CSS:
.fa-times-thin:before {
content: '\00d7';
}
and this sample HTML:
<i class="fa fa-times-thin fa-2x" aria-hidden="true"></i>
The result:
Much better!
Source: https://github.com/FortAwesome/Font-Awesome/issues/1540#issuecomment-68689950
Typo in the first line? “does not” should be “does now”?
Changes the meaning a little bit… 😉
No. I did mean to write “does not” because FA does not currently have a thin close icon font.
Thanks man, this is awesome!
Awesome!!
Hi,
Thanks for the the css trick,
Could you please show us the same for thinning fa-check ?
Thanks,
Saloni
Wow! Thank you for this! It’s really cool trick
nice!, Thanks you very much
Brilliant! I’m bookmarking this.