您的位置:首页 > Web前端 > CSS

CSS3选择器(二)

2015-11-11 10:49 591 查看
选择器: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















































内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: