Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以仅使用 css 切换一个类?
说我有以下内容:
<div class="parent"> <div class="child collapsed"> Boring Text </div> </div>
是否有可能,仅使用 css,当您单击 时parent,您可以将collapsed课程切换到expanded,反之亦然?
parent
collapsed
expanded
不。
您可以使用伪类(如:hover、:active、:checked、 )来处理状态,:target但这与更改 DOM 的类属性的状态不同。
:hover
:active
:checked
:target