How can I show text on hover?

Hi.

I am new to web programming. I found this website https://brokerchooser.com/.

I would like to know how can I make the Why “Brokerchooser?” part of the website. When you move the cursor to the icon and the text just appear.

Hi there buzapatrik95,

and a warm welcome to these forums. :sunglasses:

Let me…

[indent]
Google
[/indent]

…a few suggestions that may help you in your quest. :wink:

coothead

2 Likes

Hi @buzapatrik95, you can inspect the element with the browser dev tools and see for yourself. :-) In this case, the core effect is achieved by

.lift {
  overflow: hidden;
}

.lift:hover {
  overflow: visible;
}
2 Likes

Thank you. I didn’t know that there was a “let me google you” app :smile: I will try these.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.