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.
Display:none不适用于子 div。我该如何解决这个问题?
HTML
<div class="parent"> Hello <div class="child"> Ola </div> </div>
CSS
.parent { display:block; } .child { display:none; }
在 Chrome 开发者工具中,孩子的 display:none 被划掉。
发现错误 - 在我的实际代码中有两个显示属性 - 而不是这里的简化版本。 愚蠢的错误:P
您的 HTML 不正确,缺少结束引号"
"
<div class="parent"> <div class="child"> </div> </div>