如何保持嵌套div出现?

发布于 2025-01-18 17:56:25 字数 623 浏览 0 评论 0原文

这是我的 CSS 代码:

.elementor-post__text {
    visibility: hidden;
}

这是我的 HTML:

<div class="elementor-post__card">
<div class="elementor-post__text">
<h4 class="elementor-post__title">
<a href="">Best<span class="dashicons "></span> </a>
</h4>
<div class="elementor-post__excerpt">
<p>As a beginner, you will surely encounter a lot of problems</p>
</div>
</div>
</div>

我的问题是:
如何保持“elementor-post__excerpt”出现?
我想展示“elementor-post__excerpt”。
谢谢你的回答,我真的很感激。对不起我的英语。

This is my CSS code:

.elementor-post__text {
    visibility: hidden;
}

This is my HTML:

<div class="elementor-post__card">
<div class="elementor-post__text">
<h4 class="elementor-post__title">
<a href="">Best<span class="dashicons "></span> </a>
</h4>
<div class="elementor-post__excerpt">
<p>As a beginner, you will surely encounter a lot of problems</p>
</div>
</div>
</div>

My question is:

How to keep the "elementor-post__excerpt" appearing?

I wanna show "elementor-post__excerpt".

Thanks for your answer, I really appreciate it. Sorry for my English.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过去的过去 2025-01-25 17:56:25

由于您的 elementor-post__excerpt div 嵌套在 elementor-post__text div 中,并且该 div 的可见性被隐藏,因此它的所有子项也是如此。在本例中,您希望让 div 可见。您可以尝试使用 CSS 类将摘录 div 移到 div 之外。

Since you have your elementor-post__excerpt div nested within the elementor-post__text div, and that div has its visibility hidden, so do all its children. In this case the div you want to be visible. You can try moving the excerpt div outside the div with the CSS class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文