本文介绍了CSS:如何定位给定ID中的所有元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

而不是执行以下操作,为页面上的所有元素提供文本颜色:

Instead of doing the following to give a text color to all elements on the page:

* {color: red;}

只应用于某个ID中的所有元素?像这样:

Is there a way to only apply it to all elements within a certain id? Something like this:

#container * {color: red;}


推荐答案

实际上是,正如你提到的。

Actually yes, exactly like you mentioned.

#container * { color: red; }

这篇关于CSS:如何定位给定ID中的所有元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 08:35