0
divでコンテンツを表示/非表示にするには、CSSをクリックしてください。 私は以下のコードでこれを達成できますが、私がする必要があるのは、CSSの 'ターゲット'セレクターをインラインに配置することです。助けていただければ幸いです。 THXHTMLマークアップ内でCSS 'target'セレクタをインラインで使用するには?
<style>
.openDiv {display: none;}
.openDiv:target {display: block;}
</style>
<ul>
<li><a href="#Expando1">The Tick</a>
<ul class="openDiv" id="Expando1">
<li>Has superhuman strength and mass;</li>
<li>Is nigh-invulnerable; </li>
<li>Has powers that increase as the situation becomes more dramatic;</li>
<li>Does not seem to require oxygen;</li>
<li>Cannot keep his balance if his antennae are removed.</li>
</ul>
</li>
</ul>