我有一个快速的问题:
我有一个快速表,其中有一些可点击的东西。
<table class ="tablez">
<tr>
<th>Table Title </th>
</tr>
<tr>
<td>
<a class="clickable">Click Me!</a>
<div id="showedClickable">
<p>This is showed when Click Me! is clicked.</p>
</div><!--EO showedClickable -->
</td>
</tr>
</table>
我想要完成的是:
#showedClickable {
position:absolute;
display:none;
width:auto;
height:auto;
}
这是我不知道如何“表达”的部分......我该怎么做
a.clickable:focus + #showedClickable {
display:block;
}