How-to display text on hover with CSS style (Tooltips) In this code, I will be share with you how to display a description of the text when you hover your mouse over the text <style> #text-hover{display:none} #tooltips:hover #text-hover{display:block; position:absolute; width:max-content; background:black;color:white; padding:2px;margin:2px} </style> <span id="tooltips"> hover me<span id="text-hover">learn how to make them</span> </span> © Manajmnt code Share to : ☷✎ Comments
Comments
Post a Comment
message