当前位置:网站首页>Emmet 语法
Emmet 语法
2022-07-31 15:03:00 【ximingx】
>(子代)和+(兄弟)
<!--div>ul>li-->
<div>
<ul>
<li></li>
</ul>
</div>
<!--div+div>p>span+i-->
<div></div>
<div>
<p><span></span><i></i></p>
</div>
*(多个)和^(上一级)
<!--ul>li*5-->
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<!--div+div>span^^h1-->
<div></div>
<div><span></span></div>
<h1></h1>
()(分组)
<!--div>(header>ul>li*3)+footer-->
<div>
<header>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</header>
<footer></footer>
</div>
属性(id属性、class属性、普通属性){}(内容)
<!--div#header+div#main>.container>a[href]-->
<div id="header"></div>
<div id="main">
<div class="container"><a href=""></a></div>
</div>
<!--a[href="http://127.0.0.1"]{content}-->
<a href="http://127.0.0.1">content</a>
$(数字)
<!--ul>li.item$5{$}*5-->
<ul>
<li class="item15">1</li>
<li class="item25">2</li>
<li class="item35">3</li>
<li class="item45">4</li>
<li class="item55">5</li>
</ul>
边栏推荐
- 常用工具命令速查表
- NPM Taobao mirror (latest version) released a new version of npm mirror at 2021-11-21 16:53:52 [easy to understand]
- TRACE32——常用操作
- 三角恒等变换公式
- 49. The copy constructor and overloaded 】
- Groupid(artifact id)
- Spark学习(2)-Spark环境搭建-Local
- Synchronized and volatile interview brief summary
- WeChat chat record search in a red envelope
- The role of /etc/profile, /etc/bashrc, ~/.bash_profile, ~/.bashrc files
猜你喜欢
随机推荐
最小费用最大流问题详解
R语言ggplot2可视化:使用ggpubr包的ggboxplot函数可视化分组箱图、使用ggpar函数改变图形化参数(caption、添加、修改可视化图像的题注、脚注内容)
NC | 中国农大草业学院杨高文组揭示发现多因子干扰会降低土壤微生物多样性的积极效应...
力扣:738.单调递增的数字
Synchronized and volatile interview brief summary
R语言计算时间序列数据的移动平均值(滚动平均值、例如5日均线、10日均线等):使用zoo包中的rollmean函数计算k个周期移动平均值
2021 OWASP TOP 10 漏洞指南
Sentinel安装与部署
女性服务社群产品设计
Ubantu专题5:设置静态ip地址
Network cable RJ45 interface pins [easy to understand]
梅克尔工作室-第一次
R language ggplot2 visualization: use the ggboxplot function of the ggpubr package to visualize the box plot, use the font function to customize the font size, color, style (bold, italic) of the legen
OpenShift 4 - Deploy Redis Cluster with Operator
微信聊天记录中搜索红包
763.划分字母区间——之打开新世界
TRACE32——常用操作
模板与泛型编程值typelist实现
Ubantu专题4:xshell、xftp连接接虚拟机以及设置xshell复制粘贴快捷键
NPM Taobao mirror (latest version) released a new version of npm mirror at 2021-11-21 16:53:52 [easy to understand]









