gpt4 book ai didi

css - 使用 CSS 隐藏/显示在 Chrome 中不显示内容

转载 作者:太空宇宙 更新时间:2023-11-04 14:21:51 24 4
gpt4 key购买 nike

如果有人能帮助我,我将不胜感激。我正在努力寻找答案。

我无法使此显示/隐藏代码在 Chrome 中正常工作。单击时不显示内容。它在 IE 和 Firefox 中完美运行。

Fiddle

 .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>

最佳答案

试试这个,应该可以正常工作。

       <span class="span3" tabindex="0">Hide Me</span>
<span class="span2" tabindex="0">Show Me</span>
<p class="content" >My content here</p>

CSS

 body {
display: block;
}
.span3:focus ~ .content {
display: none;
}
.span2:focus ~ .content{
display: block;
}

关于css - 使用 CSS 隐藏/显示在 Chrome 中不显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19867230/

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