考虑以下CSS:
#searchSection label, input, select
仅在
label
,input
和select
元素位于#searchSection
内部时才适用吗?事情告诉我,最终更像是这样的CSS:
#searchSection label { }
input { }
select { }
最佳答案
没有,
这表示label
中的任何#searchSection
任何input
任何select
要应用于input
中的所有label
,select
和#searchSection
:
#searchSection label,
#searchSection input,
#searchSection select{
color:#F00;
}