Emmet语法和结构伪类

2024-02-29  本文已影响0人  SeanLink

认识emmet语法

◼ Emmet (前身为 Zen Coding) 是一个能大幅度提高前端开发效率的一个工具.

◼ !和html:5可以快速生成完整结构的html5代码

image.png

>(子代)和+(兄弟)

18cb4d7da66.png

*(多个)和^(上一级)

18cb4d8152e.png

()(分组)

div>(header>ul>li*2>a)+footer>p


18cb4d89ac9.png

属性(id属性、class属性、普通属性) {}(内容)

$(数字)

ul>li.item$*5


18cb4da1002.png

隐式标签

18cb4da5b5d.png

CSS Emmet

18cb4dad127.png

结构伪类- :nth-child

◼ :nth-child(1)

◼ :nth-child(2n)

◼ :nth-child(2n + 1)

◼ nth-child(-n + 2)

结构伪类 - :nth-last-child( )

◼ :nth-last-child()的语法跟:nth-child()类似,不同点是:nth-last-child()从最后一个子元素开始往前计数

◼ :nth-of-type()用法跟:nth-child()类似

◼ :nth-last-of-type()用法跟:nth-of-type()类似

结构伪类 - :nth-of-type( )、:nth-last-of-type( )

◼ 其他常见的伪类(了解):

◼ 下面的伪类偶尔会使用:

否定伪类(negation pseudo-class)

◼ :not()的格式是:not(x)

◼ :not(x)表示除x以外的元素

上一篇下一篇

猜你喜欢

热点阅读