提问者:小点点

如何使用css[关闭]在div标记中隐藏<h3>


我试图隐藏这个div的h3标记,而不添加类。我用css尝试了各种方法,但没有成功。有人能给我推荐一个替代方案吗?

由于html代码位于插件文件中,我无法直接对其执行操作。

<div class="wpua-edit-container">
<h3>Profile Picture</h3>
</div>

共2个答案

匿名用户

这就是你想要的吗?

div h3 {display:none}
<div class="wpua-edit-container">
<h3>Profile Picture</h3>
<p>hello...</p>
</div>

匿名用户

如果需要,可以使用jQuery:

这是index.html

<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
        <script src="script.js"></script>
    </head>
    <body>
        <div class="wpua-edit-container">
            <h3>Profile Picture</h3>
        </div>
    </body>
</html>

还有剧本。js:

$(document).ready(function() {
    $("h3").hide()
})

它基本上做了与显示相同的事情:无(它将display:none样式属性添加到元素中),但使用jQuery。