Hourglass font awesome icon Usage,CSS Class Name,SVG & CSS Content Code

Hourglass font awesome icon css class name is fa-hourglass and CSS Content Code is \f254.

Hourglass font awesome icon has 2 style types i.e., regular(far), solid(fas)

Hourglass font awesome icon usage

We can display Hourglass font awesome icon using 3 different ways depending upon our requirement.

  1. Using CSS Class Name

  2. Using CSS Content Code

  3. Using SVG

Hourglass font awesome icon CSS class name

To display Hourglass font awesome icon, add predefined class name i.e.,fa-hourglass (with prefix fa-) to the i tag.

And we need to add corresponding font awesome icon style for the Hourglass icon.

Hourglass font awesome icon has 2 icon styles. To Display regular icon use far class. To Display solid icon use fas class.

<i class='far fa-hourglass'></i>
<i class='fas fa-hourglass'></i>

Output:

Hourglass font awesome icon CSS Content Code

We can display Hourglass font awesome icon using it’s CSS Content Code \f254

Use the following HTML code

<li><span class='Hourglass fontawesomeicon'></span>Hourglass</li>

Apply CSS code

<style> 
.fontawesomeicon::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
 }

.Hourglass::before {
   font: var(--fa-font-solid);
    content: ' \f254';
 }</style>

Output:

  • Hourglass
  • For the detailed tutorial visit https://www.angularjswiki.com/fontawesome/csscontentcode/

    Hourglass font awesome icon SVG

    Use the following icon SVG to display Hourglass font awesome icon.

    <svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z"/></svg>
    
    

    Use the following HTML code

    <p>This <svg class='fontawesomesvg' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z"/></svg>
     Hourglass displayed using SVG</p>
    

    Apply CSS code

    
      <style>
        .fontawesomesvg {width: 1em;
          height: 1em;
          vertical-align: -.125em;
        }
      </style>
    
    

    Output:

    This Hourglass displayed using SVG

    Change Hourglass font awesome icon size

    To increase Hourglass font awesome icon size, use the fa-lg(33 % increase), fa-2x, fa-3x, fa-4x, or fa-5x classes along with icon class \f254. Increase in icon size will be relative to their parent container.

    <i class='fas fa-hourglass fa-lg'>fa-lg</i><br/>
    <i class='fas fa-hourglass fa-2x'>fa-2x</i><br/>
    <i class='fas fa-hourglass fa-3x'>fa-3x</i><br/>
    <i class='fas fa-hourglass fa-4x'>fa-4x</i><br/>
    <i class='fas fa-hourglass fa-5x'>fa-5x</i><br/>
    
    

    Output:

    fa-lg
    fa-2x
    fa-3x
    fa-4x
    fa-5x

    Hourglass font awesome icon with Fixed Width

    All the font awesome icons does not have same width.

    For example Hourglass icon and home icon may not have same height and width.

    So to display two icons with fixed width and height we can use fa-fw class.

    <i style='border:1px solid;' class='fas fa-hourglass fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fas fa-hourglass fa-3x'></i>Normal<br/>
    <i style='border:1px solid;' class='fas fa-home fa-fw fa-3x'></i>Fixed Width<i style='border:1px solid;' class='fas fa-home fa-3x'></i>Normal<br/>
    
    

    Output:

    Fixed WidthNormal
    Fixed WidthNormal

    Hourglass font awesome icon Border

    To add border to Hourglass font awesome icon, use fa-border class.

    <i class='fas fa-hourglass fa-border fa-3x'></i>
    

    Output:

    Pull Hourglass font awesome icon To the left

    To pull Hourglass icon to the left of the container use fa-pull-left class.

    <div style='width: 200px;'>
    <i class='fas fa-hourglass fa-pull-left fa-3x'></i>
      ... The text after Hourglass Icon will be displayed on the right side of the icon.
    </div>
    <div style = 'clear: both;'></div>
    

    Output:

    ... The text after Hourglass Icon will be displayed on the right side of the icon.

    Pull Hourglass font awesome icon To the left

    To pull Hourglass icon to the right of the container use fa-pull-right class.

    <div style='width: 200px;'>
    <i class='fas fa-hourglass fa-pull-right fa-3x'></i>
      ... The text after Hourglass Icon will be displayed on the left side of the icon.
    </div>
    <div style = 'clear: both;'></div>
    

    Output:

    ... The text after Hourglass Icon will be displayed on the left side of the icon.

    Animate Hourglass font awesome icon

    To animate Hourglass font awesome icon, use fa-spin class.

    <i class='fas fa-hourglass fa-spin fa-3x'></i>
    

    Output:

    Animate Hourglass font awesome icon with steps

    While animating the font awesome icon,We can rotate Hourglass icon in 8 steps instead of uniform rotation.

    We can use fa-pulse icon along with fa-spin class.

    <i class='fas fa-hourglass fa-spin fa-pulse fa-3x'></i>
    

    Output:

    Rotate Hourglass font awesome icon

    To rotate Hourglass font awesome icon, Use fa-rotate-x class

    Where ‘x’ represents degree of rotation.

    <div>
    <i class='fas fa-hourglass fa-3x'>R</i>normal<br/><br/>
    <i class='fas fa-hourglass fa-rotate-90 fa-3x'>R</i> fa-rotate-90<br/><br/> 
    <i class='fas fa-hourglass fa-rotate-180  fa-3x'>R</i> fa-rotate-180<br/><br/> 
    <i class='fas fa-hourglass fa-rotate-270 fa-3x'>R</i> fa-rotate-270<br/><br/>
    </div>
    

    Output:

    Rnormal

    R fa-rotate-90

    R fa-rotate-180

    R fa-rotate-270

    Flip Hourglass font awesome icon

    To flip Hourglass font awesome icon horizontally and vertically use fa-flip-horizontal and fa-flip-vertical classes.

    <div>
    <i class='fas fa-hourglass fa-3x'>F</i> Normal <br>
    <i class='fas fa-hourglass fa-flip-horizontal fa-3x'>F</i> fa-flip-horizontal<br>
    <i class='fas fa-hourglass fa-flip-vertical fa-3x'>F</i> fa-flip-vertical<br>
    </div>
    

    Output:

    F Normal
    F fa-flip-horizontal
    F fa-flip-vertical

    Combine Hourglass font awesome icon with other font awesome icons

    In font awesome icons,using stacking we can combine multiple icons and display it as one icon.

    To do that use the fa-stack class on the parent, the fa-stack-1x for the regularly sized icon, and fa-stack-2x for the larger icon.

    And use class fa-inverse for an alternative icon color.

    In the below example, I am displaying Hourglass font awesome icon on top of icons like fa-square,fa-circle and fa-ban.

    And used fa-inverse in the second example to invert the color of the icon.

    <div>
        <span class='fa-stack fa-lg'>
            <i class='far fa-square fa-stack-2x'></i>
            <i class='fas fa-hourglass fa-stack-1x'></i>
        </span>
          Hourglass on fa-square<br>
        <span class='fa-stack fa-lg'>
            <i class='fas fa-circle fa-stack-2x'></i>
            <i class='fas fa-hourglass fa-stack-1x fa-inverse'></i>
        </span>
          Hourglass on fa-circle<br>
    
        <span class='fa-stack fa-lg'>
            <i class='fas fa-hourglass fa-stack-1x'></i>
            <i class='fas fa-ban fa-stack-2x'></i>
        </span>
          Hourglass on fa-ban
    </div>
    

    Output:

    Hourglass on fa-square
    Hourglass on fa-circle
    Hourglass on fa-ban
    Avatar

    Arunkumar Gudelli

    Liked this post? Subscribe