当前位置:网站首页>Emmet basic syntax
Emmet basic syntax
2022-07-02 19:09:00 【If you don't study today, you will become a cured chicken tomor】
#Emmet grammar
1. For a single element
1.1 Quickly generate a tag
Tag name +tab:
The renderings are as follows :
h1 Press enter again :
<h1></h1>
1.2 Generate tags id attribute
* Tag name +tab+#
h1# Again · Press enter
<h1 id=""></h1>
1.3 Generate tags classs attribute ‘
Tag name +tab+.
h1. Press enter again :
<h1 class=""></h1>
h1.x Press again tab The key is as follows :
<ha class="x"></ha>
1.4 Generate other attributes of the tag
Tag name +[ attribute 】
img[alt], Press enter again :
<img src="" alt="">
1.5 Generate multiple single elements
h1*3 Press again tab key
<a href=""></a><a href=""></a><a href=""></a>
1.6 Generate the value of the tag
li{xx} Press again tab key :
<li>x</li>
2. For multiple elements
2.1 Generate multiple brothers
a+h1+h2 Press again tab key
<a href=""></a>
<h1></h1>
<h2></h2>
2.2 Generate parent-child elements
Each element is enclosed by a greater than sign , Is the child element of which
ul>li>a Press again tab key
<ul>
<li><a href=""></a></li>
</ul>
2.3 Serial number ’@’ and ‘#’
ul>li.ix{[email protected]}*3 Press again tab key :
<ul>
<li class="ix">as1</li>
<li class="ix">as2</li>
<li class="ix">as3</li>
</ul>
3. practice ( Generate a 5*8 Table for )
table>caption{ title }+(thead>th>br>tr{ Form head }*5)+tbody>th>br*7>tr{ Cell }*5
Press again tab key , This answer is for reference only
边栏推荐
- Progress progress bar
- Crypto usage in nodejs
- 在纽约寻找童真——新泽西州乐高乐园探索中心的美好一天
- Distance measurement - Jaccard distance
- What is 9D movie like? (+ common sense of dimension space)
- When converting from list to map, if a certain attribute may cause key duplication and exceptions, you can set the way to deal with this duplication
- 新手必看,點擊兩個按鈕切換至不同的內容
- What are the links of the problem
- Mysql高级篇学习总结7:Mysql数据结构-Hash索引、AVL树、B树、B+树的对比
- Excel如何进行隔行复制粘贴
猜你喜欢

Mysql高级篇学习总结7:Mysql数据结构-Hash索引、AVL树、B树、B+树的对比
![[论文阅读] CA-Net: Leveraging Contextual Features for Lung Cancer Prediction](/img/ef/bb48ee88d5dc6fe876a498ab53106e.png)
[论文阅读] CA-Net: Leveraging Contextual Features for Lung Cancer Prediction

仿京东放大镜效果(pink老师版)

Use cheat engine to modify money, life and stars in Kingdom rush

【JVM调优实战100例】03——JVM堆调优四例

The difference between interceptor and filter

M2DGR:多源多场景 地面机器人SLAM数据集(ICRA 2022 )

yolov3 训练自己的数据集之生成train.txt

Troubleshooting: kubectl reports an error validationerror: unknown field \u00a0

Looking for innocence in New York -- a beautiful day at the discovery center of Legoland, New Jersey
随机推荐
M2DGR:多源多场景 地面机器人SLAM数据集(ICRA 2022 )
SQL training 2
Industrial software lecture - core technology analysis of 3D CAD design software - the second lecture of the Forum
[paper reading] Ca net: leveraging contextual features for lung cancer prediction
Looking for innocence in New York -- a beautiful day at the discovery center of Legoland, New Jersey
R language ggplot2 visualization: visualize the line chart and add customized X-axis label information to the line chart using labs function
The second bullet of AI development and debugging series: the exploration journey of multi machine distributed debugging
PyTorch函数中的__call__和forward函数
Singapore summer tourism strategy: play Singapore Sentosa Island in one day
How to play when you travel to Bangkok for the first time? Please keep this money saving strategy
Markdown基础语法
Page title component
[test development] software testing - concept
拦截器与过滤器的区别
深度学习数学基础
Excel查找一列中的相同值,删除该行或替换为空值
Emmet基础语法
在纽约寻找童真——新泽西州乐高乐园探索中心的美好一天
[Yugong series] July 2022 go teaching course 001 introduction to go language premise
从list转化成map的时候,如果根据某一属性可能会导致key重复而异常,可以设置处理这种重复的方式