how to apply style to 'title' attribute of 'td' tag
css, html
Solution
Not directly.
You can do it with:
JavaScript code: see here
a library: see here
a little workaround with CSS see here
Problem
I have the following code with me, and would like to customize the style of the 'title' attribute. Is there any way to do it. Thanks in advance. ``` <td title="Sample Title">test</td> ```