考虑以下CSS:

#searchSection label, input, select


仅在labelinputselect元素位于#searchSection内部时才适用吗?

事情告诉我,最终更像是这样的CSS:

#searchSection label { }
input { }
select { }

最佳答案

没有,

这表示


label中的任何#searchSection
任何input
任何select




要应用于input中的所有labelselect#searchSection

#searchSection label,
#searchSection input,
#searchSection select{
    color:#F00;
}

07-26 00:30