如何选择作为给定元素的子元素的多个元素?

时间:2022-11-29
本文介绍了如何选择作为给定元素的子元素的多个元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有 <div id='mydiv'> 我需要选择所有 prediv 的子元素#mydiv.

I have <div id='mydiv'> and I need to select all pre and div elements that are children of #mydiv.

我可以这样做:

div#mydiv > pre, div#mydiv > div

但是,是否可以做到只引用一次#mydiv?

but, can it be done so that #mydiv is referenced only once?

div#mydiv > pre, div

将选择页面上的所有 div,无论它们是否是 #mydiv 的子级,因此逗号不是一种方法.也许还有另一种我不知道的语法?

will select all divs on the page regardless if they're children of #mydiv, so the comma isn't a way to do it. Maybe there's another kind of syntax I don't know about?

推荐答案

你必须引用 #mydiv 两次...

You'll have to reference #mydiv twice...

#mydiv > pre, #mydiv > div

我删除了无关的 div 元素选择器,因为 ID 足够具体.

I removed the extraneous div element selector as the ID is specific enough.

这篇关于如何选择作为给定元素的子元素的多个元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:CSS 选择器中的多个类 下一篇:CSS3 获取最后一个元素

相关文章

最新文章