gpt4 book ai didi

CSS :target another element

转载 作者:行者123 更新时间:2023-11-28 12:55:44 25 4
gpt4 key购买 nike

是否可以像示例中那样也定位另一个元素?

<a href="#AAA">click</a>
<div id="AAA">some content</div>
<div id="BBB">some content</div>

有点像...

#AAA:target #BBB{color:red}

最佳答案

在这种情况下,您可以使用 adjacent sibling combinator, + .

EXAMPLE HERE

#AAA:target + #BBB {
color:red
}

根据标记,使用 general sibling combinator, ~ 可能更好. (example)

关于CSS :target another element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22516404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com