如果多维数据集直接位于容器内部:
#container:hover > #cube { background-color: yellow; }如果多维数据集位于容器旁边(在容器关闭标签之后):
#container:hover + #cube { background-color: yellow; }如果多维数据集在容器内的某个位置:
#container:hover #cube { background-color: yellow; }如果多维数据集是容器的同级:
#container:hover ~ #cube { background-color: yellow; }


