我想知道是否有可能在 css 表后面有可点击的链接。当图像为 40px 时,无法选择其后面的链接。
为什么我把它放在一个表格中是因为每个文本块都需要是 248px (744/3)
CSS
#tabel{
position:absolute;
}
table, td, th
{
width:744px;
height:40px;
text-align:center;
}
th
{
background-color:transparent;
color:white;
}
HTML:
<div id="tabel">
<table cellspacing="0" cellpadding="0">
<tr>
<th>TXT 1</th>
<th>TXT 2</th>
<th>TXT 3</th>
</tr>
</table>
</div>
我的目标是有 3 个可点击的按钮(用于带有导航的 jquery 图像滑块),上面有文本。