How to make a hover over blog box?

What is the css or html code to make a text box that is invisible until you hover your mouse over it?

3

✅ Answers

? Favorite Answer

  • Just add the title=”” attribute with the text inside it to the blog box’s tag. Could use JavaSCript for a more useful hover text box.

    Ron

  • if its invisible… how can you hover mouse over it? you mean its transparent ?

    look at this… by little changing in css you can increase or decrease the transparency of the box !

    http://segment7.net/projects/web/stateful_mouseove…

    & this is the code for changing transparency of objects via css:

    opacity:0.4;filter:alpha(opacity=40);

  • [ Stuff ] {

    display: none;

    [ Stuff ]:hover {

    display: inline (or block);

    }

  • Leave a Comment