cursor:pointer
字的大小
td{font-size:12px}

解决方案 »

  1.   

    可以在a的标签中加入一个href的链接,链接可以为"#",或者其他。
    为了避免字体大小变化,可以在样式表中,先设置一下字体的大小。
    <html xmlns="http://www.w3.org/1999/xhtml">
    <body>
    <style type="text/css"> 
    *{font-size:12px;}
    a{cursor:hand}
    .box{cursor:hand}
    </style>
        <table id="mydiv" style="border: 1px blue solid; position: relative;background-color: menu; padding: 10px; line-height: 140%" width='120' height='70' class="box">
            <tr><td><a href="javascript:(void 0)" onclick="Tasks_Pop_Menu()" class="cc">Show pic(1) </a></td></tr>
            <tr><td><a href="javascript:(void 0)" onclick="Tasks_Pop_Menu()" class="cc">Show pic(2) </a></td></tr>
            <tr><td><a href="javascript:(void 0)" onclick="Tasks_Pop_Menu()" class="cc">Show pic(3) </a></td></tr>
        </table>
    </body>
    </html>