簡単な質問があります:
クリックできるものがある簡単な表があります。
<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;
}