-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.

6
  • What have you tried? could you post some code of what you have tried so far? Commented May 15, 2015 at 10:19
  • I tried some Jquery code but didn't get proper output. Commented May 15, 2015 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. Commented May 15, 2015 at 10:33
  • 1
    possible duplicate of Tooltip with HTML content without JavaScript Commented May 15, 2015 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. Commented May 15, 2015 at 10:46

1 Answer 1

-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

Sign up to request clarification or add additional context in comments.

1 Comment

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,

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.