当前位置:网站首页>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>
边栏推荐
- Network cable RJ45 interface pins [easy to understand]
- LeetCode二叉树系列——226.翻转二叉树
- OAuth2:搭建授权服务器
- NPM淘宝镜像(最新版本)于2021-11-21 16:53:52发布新版本npm镜像[通俗易懂]
- Trigonometric identity transformation formula
- The 232-layer 3D flash memory chip is here: the single-chip capacity is 2TB, and the transmission speed is increased by 50%
- 高等数学——常用不定积分公式
- 力扣:738.单调递增的数字
- element-plus虚拟表格virtual-list组件中是怎么实现清理lodash.memoize缓存的?
- UnityShader入门学习(三)——Unity的Shader
猜你喜欢
随机推荐
OpenShift 4 - 定制 RHACS 安全策略,阻断生产集群使用高风险 Registry
Efficient use of RecyclerView Section 3
Essential Learning for Getting Started with Unity Shader - Transparency Effect
易驱线主控芯片对比(电动三轮电机90O瓦世纪通达)
abaqus find contact pairs报错:surface name is already in use
NPM淘宝镜像(最新版本)于2021-11-21 16:53:52发布新版本npm镜像[通俗易懂]
NC | 中国农大草业学院杨高文组揭示发现多因子干扰会降低土壤微生物多样性的积极效应...
Nuget package and upload tutorial
49. The copy constructor and overloaded 】
ES6 类
How to clean up the lodash.memoize cache in the element-plus virtual table virtual-list component?
Synchronized和volatile 面试简单汇总
Groupid(artifact id)
Five dimensions to start MySQL optimization
R语言ggplot2可视化:使用ggpubr包的ggmaplot函数可视化MA图(MA-plot)、font.legend参数和font.main参数设置标题和图例字体加粗
R语言ggstatsplot包ggbarstats函数可视化条形图、并添加假设检验结果(包含样本数、统计量、效应大小及其置信区间、显著性、组间两两比较、贝叶斯假设)、检验结果报告符合APA标准
Getting started with UnityShader (1) - GPU and Shader
The paper manual becomes 3D animation in seconds, the latest research of Wu Jiajun of Stanford University, selected for ECCV 2022
R语言ggplot2可视化:使用ggpubr包的ggboxplot函数可视化分组箱图、使用ggpar函数改变图形化参数(legend、修改可视化图像的图例在整图中的位置)
NPM Taobao mirror (latest version) released a new version of npm mirror at 2021-11-21 16:53:52 [easy to understand]