-2

I want to create CSS menu like tool-tip. Please see attached image for exact what I want. enter image description here

Thanks In Advance.

Ketan Patil
  • 79
  • 10
  • What have you tried? could you post some code of what you have tried so far? – Persijn May 15 '15 at 10:19
  • I tried some Jquery code but didn't get proper output. – Ketan Patil May 15 '15 at 10:22
  • Just add the code :P Here on stackoverflow we usually don't help out unless you show some code which worked or that did not work. – Persijn May 15 '15 at 10:33
  • 1
    possible duplicate of [Tooltip with HTML content without JavaScript](http://stackoverflow.com/questions/17391194/tooltip-with-html-content-without-javascript) – Liam May 15 '15 at 10:45
  • Without your HTML this is impossible to answer, there are also several questions already asking for similar things which a simple google search will give you. – Liam May 15 '15 at 10:46
  • Check http://www.designer-daily.com/jquery-prototype-mootool-tooltips-12632 – ketan May 15 '15 at 10:47

1 Answers1

-3
.tooltip-block:hover:after{
    border: 1px solid #fc0;
    padding: 3px 6px;
    background: #fffea1;
    content: attr(data-title);
    position: absolute;
    right: -40px;
    top: -26px;
}

Try this on hover it might be helpful

  • Not exactly what the user is asking for. The request **appears** to be a generated *menu* that appears **like** a tooltip. Without the OP's code, it's practically impossible to provide a relevant answer, – Paulie_D May 15 '15 at 10:45