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 画像スライダー用) とその上にテキストを配置することです。