change font awesome icon size Code Answer's

The font-size property can be used to control the size of the icons. To make the icon larger, increase its value. To make it smaller, decrease its value. Change icon color property can be used to change the foreground color of an icon. You can also use a hexadecimal value or one of the predefined color values listed below.

change font awesome icon size

on Jan 01, 1970
<i class="fas fa-camera fa-xs"></i>
<i class="fas fa-camera fa-sm"></i>
<i class="fas fa-camera fa-lg"></i>
<i class="fas fa-camera fa-2x"></i>
<i class="fas fa-camera fa-3x"></i>
<i class="fas fa-camera fa-5x"></i>
<i class="fas fa-camera fa-7x"></i>
<i class="fas fa-camera fa-10x"></i>

Add Comment

0

adjust size font-awesome icon

on Jan 01, 1970
<div style="font-size: 0.5rem;">
  <i class="fas fa-camera fa-xs"></i>
  <i class="fas fa-camera fa-sm"></i>
  <i class="fas fa-camera fa-lg"></i>
  <i class="fas fa-camera fa-2x"></i>
  <i class="fas fa-camera fa-3x"></i>
  <i class="fas fa-camera fa-5x"></i>
  <i class="fas fa-camera fa-7x"></i>
  <i class="fas fa-camera fa-10x"></i>
</div>

Add Comment

0

how to increase size of font awesome icon

on Jan 01, 1970
<span style="font-size: 500px; color: Tomato;">
	<i class="fas fa-camera"></i>
</span>

Add Comment

0

font awesome size

on Jan 01, 1970
<p><i class="fa-solid fa-coffee fa-2xs"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>
  <p><i class="fa-solid fa-coffee fa-xs"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>
  <p><i class="fa-solid fa-coffee fa-sm"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>
  <p><i class="fa-solid fa-coffee"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>
  <p><i class="fa-solid fa-coffee fa-lg"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>
  <p><i class="fa-solid fa-coffee fa-xl"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>
  <p><i class="fa-solid fa-coffee fa-2xl"></i> When my six o’clock alarm buzzes, I require a pot of good java.</p>

Add Comment

0

There are many ways to change the size of your font awesome icons. The easiest way is to use CSS is given Above.

Html answers related to "change font awesome icon size"

View All Html queries

Html queries related to "change font awesome icon size"

Browse Other Code Languages

CodeProZone