JSFiddle - React, Tailwind, and code Playground

HTML

<div title="This is a tool tip test for enabled item" id="divEnabled">
    item is enabled
</div>

<div title="This is a tool tip test for disabled item" id="divDisabled">
    item is disabled
</div>

CSS

.divEnabled{

}

#divDisabled{
     opacity: 0.2;
    pointer-events: none;
}