星号 (*) 被称为CSS 通用选择器。它可用于选择 HTML 页面中的任何和所有类型的元素。星号后面也可以跟一个选择器,同时用于选择子对象。当我们想要选择页面上的所有元素时,这个选择器很有用。
例如:
* {
property : value;
}
在选择元素时,如果我们只使用星号 (*),那么无论父子关系如何,HTML 页面的所有元素都会被选中。如果我们在选择特定父级的子级时使用星号 (*),那么我们可以通过以下方式选择该父级的所有子级:
parent * {
property : value;
}
我们可以在通过以下方式选择元素时使用星号 (*) 作为中间级别:
grand_parent * grand_child{
property : value;
}
例子:
Input: * { color : green; }
Output: The text in all the elements become green
Input: * p { color : green; }
Output: The text inside those which are direct children of any elements of HTML the page will become green.
GeeksforGeeks
div->p
div->p->span
div->span->h3
A computer science portal.
输出: