Answers for "css font awesome before content"

CSS
1

use font awesome as content in css

<li>
<span class="font-awesome-icons facebook"></span> Login
</li>


.facebook::before {
    font-family: "Font Awesome 5 Brands"; 
	font-weight: 400;
	content: "\f09a";
}
Posted by: Guest on June-09-2021
0

font awesome before css

.desc > ul > li::before{
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    content: "\f058";
    padding-right: 0.5rem;
}
Posted by: Guest on March-27-2022

Browse Popular Code Answers by Language