HTML快捷輸入代碼

Emmet (前身為 Zen Coding) 是一個(gè)能大幅度提高前端開發(fā)效率的一個(gè)工具:
Emmet 把片段這個(gè)概念提高到了一個(gè)新的層次:你可以設(shè)置 CSS 形式的能夠動(dòng)態(tài)被解析的表達(dá)式蠢甲,然后根據(jù)你所輸入的縮寫來得到相應(yīng)的內(nèi)容箱叁。Emmet 是很成熟的并且非常適用于編寫 HTML/XML 和 CSS 代碼的前端開發(fā)人員,但也可以用于編程語言。

在 VSCode 使用

在 VSCode 編輯器中新建一個(gè)文件,然后保存為 html 文件。
再在編輯器中輸入縮寫代碼:ul>li*5 ,然后按下拓展鍵(默認(rèn)為 tab),即可得到代碼片
段:

<ul> 
    <li></li> 
    <li></li> 
    <li></li> 
    <li></li> 
    <li></li> 
</ul> 

語法:

后代:>

縮寫:nav>ul>li

<nav> 
    <ul> 
        <li></li> 
    </ul> 
</nav> 

兄弟:+
縮寫:div+p+bq

<div></div> 
<p></p> 
<blockquote></blockquote> 

上級:^
縮寫:div+div>p>span+em^bq

<div></div> 
<div> 
    <p><span></span><em></em></p> 
    <blockquote></blockquote> 
</div> 

縮寫:div+div>p>span+em^^bq

<div></div> 
<div> 
    <p><span></span><em></em></p> 
</div> 
<blockquote></blockquote> 

分組:()
縮寫:div>(header>ul>li*2>a)+footer>p

<div> 
    <header> 
        <ul> 
            <li><a href=""></a></li> 
            <li><a href=""></a></li> 
        </ul> 
    </header> 
    <footer> 
        <p></p> 
    </footer> 
</div> 

縮寫:(div>dl>(dt+dd)*3)+footer>p

<div> 
    <dl> 
        <dt></dt> 
        <dd></dd> 
        <dt></dt> 
        <dd></dd> 
        <dt></dt> 
        <dd></dd> 
    </dl> 
</div> 
<footer> 
    <p></p> 
</footer> 

乘法:*
縮寫:ul>li*5

<ul> 
    <li></li> 
    <li></li> 
    <li></li> 
    <li></li> 
    <li></li> 
</ul> 

自增符號(hào):$

縮寫:ul>li.item$*5

<ul> 
    <li class="item1"></li> 
    <li class="item2"></li> 
    <li class="item3"></li> 
    <li class="item4"></li> 
    <li class="item5"></li> 
</ul> 

縮寫:h$[title=item$]{Header $}*3

<h1 title="item1">Header 1</h1> 
<h2 title="item2">Header 2</h2> 
<h3 title="item3">Header 3</h3> 

縮寫:ul>li.item$$$*5

<ul> 
    <li class="item001"></li> 
    <li class="item002"></li> 
    <li class="item003"></li> 
    <li class="item004"></li> 
    <li class="item005"></li> 
</ul> 

縮寫:ul>li.item$@-*5

<ul> 
    <li class="item5"></li> 
    <li class="item4"></li> 
    <li class="item3"></li> 
    <li class="item2"></li> 
    <li class="item1"></li> 
</ul> 

縮寫:ul>li.item$@3*5

<ul> 
    <li class="item3"></li> 
    <li class="item4"></li> 
    <li class="item5"></li> 
    <li class="item6"></li> 
    <li class="item7"></li> 
</ul> 

ID 和類屬性
縮寫:#header

<div id="header"></div>

縮寫:.title

<div class="title"></div> 

縮寫:form#search.wide

<form id="search" class="wide"></form> 

縮寫:p.class1.class2.class3

<p class="class1 class2 class3"></p> 

自定義屬性
縮寫:p[title="Hello world"]

<p title="Hello world"></p> 

縮寫:td[rowspan=2 colspan=3 title]

<td rowspan="2" colspan="3" title=""></td> 

縮寫:[a='value1' b="value2"]

<div a="value1" b="value2"></div> 

文本:{}
縮寫:a{Click me}

<a href="">Click me</a>

縮寫:p>{Click }+a{here}+{ to continue}

<p>Click <a href="">here</a> to continue</p> 

隱式標(biāo)簽
縮寫:.class

<div class="class"></div> 

縮寫:em>.class

<em><span class="class"></span></em> 

縮寫:ul>.class

<ul> 
    <li class="class"></li> 
</ul> 

縮寫:table>.row>.col

<table> 
    <tr class="row"> 
        <td class="col"></td> 
    </tr> 
</table> 

HTML 所有未知的縮寫都會(huì)轉(zhuǎn)換成標(biāo)簽碟狞,例如,foo →

<foo></foo> 

縮寫:!

<!doctype html> 
<html lang="en"> 
<head> 
    <meta charset="UTF-8"> 
    <title>Document</title> 
</head> 
<body> 
 
</body> 
</html> 

縮寫:a

<a href=""></a> 

縮寫:a:link

<a href="http://"></a> 

縮寫:a:mail

<a href="mailto:"></a> 

縮寫:abbr

<abbr title=""></abbr> 

縮寫:acronym

<acronym title=""></acronym> 

縮寫:base

<base href="" /> 

縮寫:basefont

<basefont /> 

縮寫:br

<br /> 

縮寫:frame

<frame /> 

縮寫:hr

<hr /> 

縮寫:bdo

<bdo dir=""></bdo> 

縮寫:bdo:r

<bdo dir="rtl"></bdo> 

縮寫:bdo:l

<bdo dir="ltr"></bdo> 

縮寫:col

<col /> 

縮寫:link

<link rel="stylesheet" href="" /> 

縮寫:link:css

<link rel="stylesheet" href="style.css" /> 

縮寫:link:print

<link rel="stylesheet" href="print.css" media="print" /> 

縮寫:link:favicon

<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" 
/> 

縮寫:link:touch

<link rel="apple-touch-icon" href="favicon.png" /> 

縮寫:link:rss

<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml" /> 

縮寫:link:atom

<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml" /> 

縮寫:meta

<meta /> 

縮寫:meta:utf

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" 
/> 

縮寫:meta:win

<meta http-equiv="Content-Type" content="text/html;charset=windows-1251" /> 

縮寫:meta:vp

<meta name="viewport" content="width=device-width, userscalable=no, initial-
scale=1.0, maximum-scale=1.0, minimumscale=1.0" /> 

縮寫:meta:compat

<meta http-equiv="X-UA-Compatible" content="IE=7" /> 

縮寫:style

<style></style> 

縮寫:script

<script></script> 

縮寫:script:src

<script src=""></script> 

縮寫:img

<img src="" alt="" /> 

縮寫:iframe

<iframe src="" frameborder="0"></iframe> 

縮寫:embed

<embed src="" type="" /> 

縮寫:object

<object data="" type=""></object> 

縮寫:param

<param name="" value="" /> 

縮寫:map

<map name=""></map> 

縮寫:area

<area shape="" coords="" href="" alt="" /> 

縮寫:area:d

<area shape="default" href="" alt="" /> 

縮寫:area:c

<area shape="circle" coords="" href="" alt="" /> 

縮寫:area:r

<area shape="rect" coords="" href="" alt="" /> 

縮寫:area:p

<area shape="poly" coords="" href="" alt="" /> 

縮寫:form

<form action=""></form> 

縮寫:form:get

<form action="" method="get"></form> 

縮寫:form:post

<form action="" method="post"></form> 

縮寫:label

<label for=""></label> 

縮寫:input

<input type="text" /> 

縮寫:inp

<input type="text" name="" id="" /> 

縮寫:input:hidden
別名:input[type=hidden name]

<input type="hidden" name="" /> 

縮寫:input:h
別名:input:hidden

<input type="hidden" name="" /> 

縮寫:input:text, input:t
別名:inp

<input type="text" name="" id="" /> 

縮寫:input:search
別名:inp[type=search]

<input type="search" name="" id="" /> 

縮寫:input:email
別名:inp[type=email]

<input type="email" name="" id="" /> 

縮寫:input:url
別名:inp[type=url]

<input type="url" name="" id="" /> 

縮寫:input:password
別名:inp[type=password]

<input type="password" name="" id="" /> 

縮寫:input:p
別名:input:password

<input type="password" name="" id="" /> 

縮寫:input:datetime
別名:inp[type=datetime]

<input type="datetime" name="" id="" /> 

縮寫:input:date
別名:inp[type=date]

<input type="date" name="" id="" /> 

縮寫:input:datetime-local
別名:inp[type=datetime-local]

<input type="datetime-local" name="" id="" /> 

縮寫:input:month
別名:inp[type=month]

<input type="month" name="" id="" /> 

縮寫:input:week
別名:inp[type=week]

<input type="week" name="" id="" /> 

縮寫:input:time
別名:inp[type=time]

<input type="time" name="" id="" /> 

縮寫:input:number
別名:inp[type=number]

<input type="number" name="" id="" /> 

縮寫:input:color
別名:inp[type=color]

<input type="color" name="" id="" /> 

縮寫:input:checkbox
別名:inp[type=checkbox]

<input type="checkbox" name="" id="" /> 

縮寫:input:c
別名:input:checkbox

<input type="checkbox" name="" id="" /> 

縮寫:input:radio
別名:inp[type=radio]

<input type="radio" name="" id="" /> 

縮寫:input:r
別名:input:radio

<input type="radio" name="" id="" /> 

縮寫:input:range
別名:inp[type=range]

<input type="range" name="" id="" /> 

縮寫:input:file
別名:inp[type=file]

<input type="file" name="" id="" /> 

縮寫:input:f
別名:input:file

<input type="file" name="" id="" /> 

縮寫:input:submit

<input type="submit" value="" /> 

縮寫:input:s
別名:input:submit

<input type="submit" value="" /> 

縮寫:input:image

<input type="image" src="" alt="" /> 

縮寫:input:i
別名:input:image

<input type="image" src="" alt="" /> 

縮寫:input:button

<input type="button" value="" /> 

縮寫:input:b
別名:input:button

<input type="button" value="" /> 

縮寫:isindex

<isindex /> 

縮寫:input:reset
別名:input:button[type=reset]

<input type="reset" value="" /> 

縮寫:select

<select name="" id=""></select> 

縮寫:option

<option value=""></option> 

縮寫:textarea

<textarea name="" id="" cols="30" rows="10"></textarea> 

縮寫:menu:context
別名:menu[type=context]>

<menu type="context"></menu> 

縮寫:menu:c
別名:menu:context

<menu type="context"></menu> 

縮寫:menu:toolbar
別名:menu[type=toolbar]>

<menu type="toolbar"></menu> 

縮寫:menu:t
別名:menu:toolbar

<menu type="toolbar"></menu> 

縮寫:video

<video src=""></video> 

縮寫:audio

<audio src=""></audio> 

縮寫:html:xml

<html xmlns="http://www.w3.org/1999/xhtml"></html> 

縮寫:keygen

<keygen /> 

縮寫:command

<command /> 

縮寫:bq
別名:blockquote

<blockquote></blockquote> 

縮寫:acr
別名:acronym

<acronym title=""></acronym> 

縮寫:fig
別名:figure

<figure></figure> 

縮寫:figc
別名:figcaption

<figcaption></figcaption> 

縮寫:ifr
別名:iframe

<iframe src="" frameborder="0"></iframe> 

縮寫:emb
別名:embed

<embed src="" type="" /> 

縮寫:obj
別名:object

<object data="" type=""></object> 

縮寫:src
別名:source

<source></source> 

縮寫:cap
別名:caption

<caption></caption> 

縮寫:colg
別名:colgroup

<colgroup></colgroup> 

縮寫:fst, fset
別名:fieldset

<fieldset></fieldset> 

縮寫:btn
別名:button

<button></button> 

縮寫:btn:b
別名:button[type=button]

<button type="button"></button> 

縮寫:btn:r
別名:button[type=reset]

<button type="reset"></button> 

縮寫:btn:s
別名:button[type=submit]

<button type="submit"></button> 
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末婚陪,一起剝皮案震驚了整個(gè)濱河市族沃,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌泌参,老刑警劉巖脆淹,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異沽一,居然都是意外死亡盖溺,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進(jìn)店門铣缠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來烘嘱,“玉大人,你說我怎么就攤上這事蝗蛙∮ィ” “怎么了?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵捡硅,是天一觀的道長遗契。 經(jīng)常有香客問我,道長病曾,這世上最難降的妖魔是什么牍蜂? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮泰涂,結(jié)果婚禮上鲫竞,老公的妹妹穿的比我還像新娘。我一直安慰自己逼蒙,他們只是感情好从绘,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著是牢,像睡著了一般僵井。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上驳棱,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天批什,我揣著相機(jī)與錄音,去河邊找鬼社搅。 笑死驻债,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的形葬。 我是一名探鬼主播合呐,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼笙以!你這毒婦竟也來了淌实?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤猖腕,失蹤者是張志新(化名)和其女友劉穎拆祈,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體谈息,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡缘屹,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了侠仇。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片轻姿。...
    茶點(diǎn)故事閱讀 39,688評論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖逻炊,靈堂內(nèi)的尸體忽然破棺而出互亮,到底是詐尸還是另有隱情,我是刑警寧澤余素,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布豹休,位于F島的核電站,受9級特大地震影響桨吊,放射性物質(zhì)發(fā)生泄漏威根。R本人自食惡果不足惜凤巨,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望洛搀。 院中可真熱鬧敢茁,春花似錦、人聲如沸留美。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽谎砾。三九已至逢倍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間景图,已是汗流浹背较雕。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留症歇,地道東北人郎笆。 一個(gè)月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像忘晤,于是被迫代替她去往敵國和親宛蚓。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容