CSS选择器

选择器语法规则如下所示:

选择器 用法
id选择器 #myid
类选择器 .myclassname
标签选择器 div,h1,p
相邻选择器 h1+p
子选择器 ul > li
后代选择器 li a
通配符选择器 *
属性选择器 a[rel="external"]
伪类选择器

a:hover, li:nth-child

参考链接:

https://www.w3cschool.cn/css/css-selector.html

CSS选择器

上一篇:nodejs与bat结合的定时查询功能-代码中逻辑定时去查询仪器列表是否需要送去校验


下一篇:也谈如何写一个Webserver(-)