Descendant Selectors

    包含选择符
语法:
E1 E2
说明:
选择所有被E1包含的E2。即E1.contains(E2)==true。
示例:
table td { font-size:14px; }
div.sub a { font-size:14px; }