⛏️ text-decoration:none
By default when we create a hyperlink we have an underline to it, If you have an anchor tag in HTML, and you do not want it to have an underline, then it is achievable using text-decoration CSS attribute.
A link with an underline.
Code:
<a href="http://code2care.org">http://code2care.org</a>
Result:
A hyperlink without a underline - by using: text-decoration:none
Code:
<a href="http://code2care.org" style="text-decoration:none">http://code2care.org</a>
Result:
http://code2care.orgProvide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!