I want to create CSS menu like tool-tip.
Please see attached image for exact what I want.
 
 
Thanks In Advance.
I want to create CSS menu like tool-tip.
Please see attached image for exact what I want.
 
 
Thanks In Advance.
 
    
    .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