标签:选择器 strong 选择 css选择器 red 第一个 col first margin
一,CSS选择器
1. h1 > strong {color:red;}表示的是只有h1下子元素才是红色,“孙子”就不行。
2. h1 + p {margin-top:50px;} 选择相邻兄弟
3. p:first-child{} 指的是第一个p,而不是p的第一个子元素
二,
标签:选择器 strong 选择 css选择器 red 第一个 col first margin
原文地址:http://www.cnblogs.com/jasenin/p/7449339.html