日期:2014-05-17 浏览次数:20541 次
<style type="text/css"> /*Tooltips*/ .tooltips{ display:block;position:relative; /*这个是关键*/ z-index:2; } .tooltips:hover{ z-index:3; background:none; /*没有这个在IE中不可用*/ } .tooltips span{ display: none; } .tooltips:hover span{ /*span 标签仅在 :hover 状态时显示*/ display:block; position:absolute; top:0px; left:0px; width:220px; height:335px; border:1px solid #999999; background-color:#FFFFFF; padding: 3px; color:black; </style>
<a class="tooltips" href="#tooltips"> <img src="images/1.jpg" width="100" height="100" style="border: 0" alt="" /> <span> <table> <tr> <td> <img src="1.jpg" style="border: 0" width="212" height="212" alt="" /> </td> </tr> <tr> <td> name </td> </tr> </table> </span> </a>