如果 css 中有指定的子级,则更改父级样式

发布于 2024-11-28 00:25:33 字数 346 浏览 2 评论 0原文

我有一个 html 元素,可以有一个 id='slideshow' 的子元素

<div id='content'>
   <div id='slideshow'>
   </div>
</div>

,也可以有一个不同的子元素,

<div id='content'>
   <div id='other'>
   </div>
</div>

我想仅当它有子元素 #slideshow 时才将样式应用于 #content。

是否可以?

I have an html element that can have either a child with id='slideshow'

<div id='content'>
   <div id='slideshow'>
   </div>
</div>

or a different child

<div id='content'>
   <div id='other'>
   </div>
</div>

I want to apply a style to #content only if it has a child #slideshow.

Is it possible?

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

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

发布评论

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

评论(1

夢归不見 2024-12-05 00:25:33

不幸的是,这(还?)仅靠 CSS 是不可能的。不过,您可以在 jquery 或几乎任何其他 JavaScript 框架中使用几行代码来完成此操作。

Unfortunately this is not (yet?) possible in CSS alone. You can however do it with a couple of lines in jquery or almost any other javascript framework.

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