当前位置:网站首页>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>
边栏推荐
- Essential Learning for Getting Started with Unity Shader - Transparency Effect
- 架构实战营模块8消息队列表结构设计
- Architecture actual combat battalion module 8 message queue table structure design
- leetcode303场周赛复盘
- UnityShader入门学习(三)——Unity的Shader
- Gorm—Go语言数据库框架
- 2021 OWASP TOP 10 漏洞指南
- Message queue data storage MySQL table design
- SetoolKit User Guide
- R语言的画图代码及差异性分析[通俗易懂]
猜你喜欢

Ubantu project 4: xshell, XFTP connected the virtual machine and set xshell copy and paste the shortcut

OAuth2:使用JWT令牌

如何进行需求分析评审

TCP详解

Excel quickly aligns the middle name of the table (two-word name and three-word name alignment)

SetoolKit User Guide

Public Key Retrieval is not allowed error solution when DBeaver connects to MySQL 8.x

LeetCode二叉树系列——222.完全二叉树的节点个数

The 232-layer 3D flash memory chip is here: the single-chip capacity is 2TB, and the transmission speed is increased by 50%

使用 PyTorch 检测眼部疾病
随机推荐
Groupid(artifact id)
Getting started with UnityShader (1) - GPU and Shader
Spark学习(3)-Spark环境搭建-Standalone
公告
sentinel与nacos持久化
分成两栏后文字顺序混乱的问题解决【写期刊论文时】
OAuth2:单点登陆客户端
Ubantu project 4: xshell, XFTP connected the virtual machine and set xshell copy and paste the shortcut
网线RJ45接口针脚[通俗易懂]
三角恒等变换公式
基于最小二乘法和SVM从天气预报中预测太阳能发电量(Matlab代码实现)
高等数学——常用不定积分公式
abaqus find contact pairs报错:surface name is already in use
SQL、HQL、JPQL 到底有什么区别
Efficient use of RecyclerView Section 3
ERROR: Failed building wheel for osgeo
TRACE32 - SNOOPer-based variable logging
The meaning of node_exporter performance monitoring information collection in Prometheus
Unity Shader入门精要学习——透明效果
小试牛刀:Go 反射帮我把 Excel 转成 Struct