Search code examples
htmlcss

Make text show up on hover over button


What I want to do is have something like this:

<button class="addMore">+</button>

Do an effect like this:

https://i.gyazo.com/d353b657df39c0e6ff159bfdb713f6a4.mp4

when you hover over it.

I've been able to find a few different things for this but none that act as I want it to in the video.


Solution

  • Use title in order to display your message:

    <button class="addMore" title="click here">+</button>