Thin Font Awesome Close Icon

Posted on
5/5 - (413 votes)

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>

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>