I've table, In data cell if text is long then I have implemented ellipsis . What I want to achieve if data cell have ellipsis then I want to show tooltip on normal text I don't want to show tooltip . Could someone please help me how to achieve my goal
Thanks
Code
table tr td {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
<table>
<tr>
<td>Text is very long . Text is very long . Text is very long . Text is very long . </td>
<td>Text is normal</td>
</tr>
</table>