标签: html css attributes
这是代码,我尝试了其他无效的属性选择器。元素在div内非常重要,因为它可以模拟真实网站中的结构。
#AAA:checked ~ #BBB { color:red; } <div> <input type="radio" id="#AAA">click </div> <div id="CCC">some content</div> <div id="BBB">some content</div>
Fiddle where I've been experimenting