前端3+1(Day5)
前端3+1(Day5)
超链接的target属性有哪些,分别有哪些作用
- _blank 浏览器总是打开一个新标签
-
_self (默认),就在这个页面内打开,(在这个框架下显示)
-
_parent,在父框架下打开链接(在上一级的窗口中显示)
-
_top,在浏览器 整个窗口运行,忽略掉所有框架
css3新增伪类
- :first-child 他匹配的就是结构上的第一个,如果不符合,那么就是匹配不到
第一子元素
第二子元素
第三子元素
第四子元素
p:first-child,那么就是可以匹配到的
h1:first-child,就是匹配不到,因为h1不是第一个子元素
h1-first-of-type,可以匹配到两个h1的第一个
-
:nth-child(n)
-
:last-child
-
:nth-last-child(n)
-
:first-of-type 一组兄弟元素的其中第一个
-
:last-of-type
-
:nth-of-type(n)
-
:nth-last-of-type(n)
-
:only-child
-
:empty 连空格都没有的元素