CSS * 选择器

实例

色:

*
{ 
background-color:yellow;
}

#id 选择器。

*

* 有元素:

实例

选取 <div>

div *
{ 
background-color:yellow;
}