Home > Enterprise >  Little lines next to my fontawesome icons?
Little lines next to my fontawesome icons?

Time:03-22

I've been coding a website and whenever I use a href with a fontawesome icon it shows a little line right next to the icon (that is probably the underline link). I've already tried

style="text-decoration: none;

but that only seems to work with text for me.

CodePudding user response:

I think there is a problem with the HTML code. You can get help from the following code:

   <a href="#"><i ></i></a>

CodePudding user response:

Try Putting font awesome Icons in and give text-decoration:none; It should work fine. If it does not, please type your Html and CSS for the concerned Element! I will tell you why is this happening.

  • Related