<html> <head></head> <body> <p id="a" style="position: relative;"> <table id="b" style="position:absolute;left: 0;top: 0;"> <tr> <td>aaaaa</td><td>bbbb</td> </tr> </table> <p id="c" style="position:absolute;left: 0;top: 0;cursor: pointer;height:24px;width:82px;"> </p> </p> </body> </html>
In IE, you can see that when the mouse is placed on the text, the hand will turn into an I gesture. In Firefox and Chrome, there is no problem.
Add transparent background
<html> <head> </head> <body> <p id="a" style="position: relative;"> <table id="b" style="position:absolute;left: 0;top: 0;"> <tr><td>aaaaa</td><td>bbbb</td> </tr> </table> <p id="c" style="position:absolute;left: 0;top: 0;cursor: pointer;height:24px;width:82px; background:#fff; filter:alpha(opacity=1); "> </p></p> </body> </html>