该
h1:first-child选择装置
当且仅当它是一个
h1元素时,才选择其父项的第一个孩子。
所述
:first-child容器的这里是
ul,这样不能满足
h1:first-child。
:first-of-type您的情况有CSS3 :
.detail_container h1:first-of-type{ color: blue;}但是由于浏览器兼容性问题而已,那么最好还是给第
h1一个类一个类,然后再定位该类:
.detail_container h1.first{ color: blue;}


