A Pen by istockmarket on CodePen.
Created
September 18, 2025 01:12
-
-
Save istockmarket/32d879026247520b1871f4c9062957d8 to your computer and use it in GitHub Desktop.
Font Awesome 6: Styling with Masking
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Font Awesome: Styling with Masking</title> | |
| <!-- We're using a Pro SVG+JS Kit to load Font Awesome Version 6 Latest --> | |
| <!-- Get your own Kit at fontawesome.com/kits --> | |
| <script src="https://kit.fontawesome.com/5d93eb1089.js" crossorigin="anonymous"></script> | |
| </head> | |
| <body> | |
| <main class="demo-frame"> | |
| <section class="demo"> | |
| <article class="demo-example"> | |
| <!-- The code for this feature showcase starts here --> | |
| <!-- An example of masking --> | |
| <div class="sample masking"> | |
| <div class="fa-4x"> | |
| <i class="fa-solid fa-pencil-alt" data-fa-transform="shrink-10 up-.5" data-fa-mask="fa-solid fa-comment"></i> | |
| <i class="fa-brands fa-facebook-f" data-fa-transform="shrink-3.5 down-1.6 right-1.25" data-fa-mask="fa-solid fa-circle"></i> | |
| <i class="fa-solid fa-headphones" data-fa-transform="shrink-6" data-fa-mask="fa-solid fa-square" ></i> | |
| <i class="fa-solid fa-mask" data-fa-transform="shrink-3 up-1" data-fa-mask="fa-solid fa-circle" ></i> | |
| </div> | |
| </div> | |
| <!-- The code for this feature showcase end here --> | |
| </article> | |
| </section> | |
| </main> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* JS for this feature */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS styling for this feature */ | |
| /* demo styling - you don't need these styles for your power tranforms */ | |
| .sample { | |
| margin: var(--spacing-xl); | |
| padding: var(--spacing-xl); | |
| border: 2px solid var(--fa-navy); | |
| border-radius: var(--border-radius-md); | |
| background-color: var(--white); | |
| } | |
| .sample .svg-inline--fa { | |
| background-color: MistyRose; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://codepen.io/fontawesome/pen/wvjxwQM/beefb5e0a98c2ab1c3fb8cd349fb15b1.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment