CSS3选择器(二)

来源:互联网 发布:时间管理的软件 编辑:程序博客网 时间:2024/05/24 05:23

选择器:first-child  last-child nth-child nth-last-child

att:first-child:元素中的第一个子元素

att:last-child:元素中的最后一个子元素

att:nth-child(position):正position位被选中

att:nth-last-child(position):倒数第position位被选中(odd/even奇偶也可以)


选择器:nth-of-type nth-last-of-type

nth-of-type(odd/even):  将类似模块元素归为一组

nth-last-of-type:倒叙


选择器:only-child

only-child:只有一个子元素的时候可以代替nth-child和nth-last-child


选择器:UI元素状态伪类选择器

att:hover 鼠标掠过

att:focus 获取焦点的颜色

att:active 鼠标按住的颜色


选择器:enabled  disabled(一共17个伪元素选择器)

选择器:通用兄弟元素选择器 att~att

























0 0