如果有人可以帮助我,我将不胜感激。我正在努力寻找答案。
我无法让这个显示/隐藏代码在 Chrome 中工作。单击时内容不显示。它在 IE 和 Firefox 中完美运行。
.hide {display: none;
}
#list {display: none;
}
.show:focus { display: none;
}
.show:focus + .hide {display: inline;
}
.show:focus ~#list{ display:block;
}
<a href="#" class="show" tabindex="2">show</a>
<a href="#" class="hide" tabindex="1">hide</a>
<div id="list">
Content here
</div>