语法:
后代:>
缩写: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>
自增符号:$
缩写: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>
隐式标签
缩写:.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
所有未知的缩写都会转换成标签,例如,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, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=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>
相关推荐
在学习emmet的过程中, 写的许多示例代码, 在sublime中打开的话,可以快速检索
emmet css 使用缩写作为类名的样板实用程序样式表。 // emmet abbreviationd:n → display: none;// CSS class (all `:` are replaced with `-`) .d-n { display: none; }目前使用 emmet 1.3.1。 查看。目的拥有一组...
Emmet插件的使用,结合了缩写语法和快捷键,使得开发者可以在编写HTML/CSS代码时,不必重复输入大量的代码,从而节约了时间,提高了效率。在Sublime Text中使用Emmet前,通常需要安装Emmet插件,然后在编辑器的设置...
### HTML+CSS+Emmet 笔记 #### HTML 基础 - **网页组成**: - **HTML**:负责网页的结构。 - **CSS**:负责网页的样式。 - **JavaScript**:负责网页的行为。 - **文档类型声明**:`<!DOCTYPE html>` 声明告诉...
2. **自动完成**:当输入HTML标签时,Emmet会自动补全标签的闭合,并提供属性的智能提示,例如输入`class=`后,会显示已定义的CSS类名供选择。 3. **缩进调整**:在嵌套元素之间移动光标时,Emmet会自动处理缩进,...
3. **嵌套选择器**:Emmet的嵌套选择器功能允许开发者在一个缩写内定义多个CSS选择器,这在处理复杂CSS规则时非常有用。例如,`nav>ul>li a`会被解析为: ```css nav ul li a { /* 样式在这里 */ } ``` 4. **...
4. 开始使用: 安装完成后,打开HTML或CSS文件,输入Emmet缩写并按下Tab键,即可看到神奇的代码自动生成。 总之,Sublime Text中的Emmet插件以其高效、智能化的特性,成为了前端开发者不可或缺的工具之一,无论是...
Emmet使用一套简短的缩写语法来提高编写HTML和CSS的速度,下面介绍几个基本的语法规则: #### HTML文档类型和结构初始化 - **HTML5**:使用`html:5`或`!`表示HTML5文档类型。 - **XHTML过渡**:使用`html:xt`表示...
在编写CSS时,只需要输入部分属性或选择器名称,然后按下特定快捷键(如`Ctrl+Space`),Emmet会提供一个列表供你选择,这样可以避免记忆大量CSS属性和选择器的困扰。 此外,Emmet-Vim还提供了丰富的操作命令,例如...
当多人协作时,使用统一的Emmet缩写规范能够提高代码阅读性和团队间的沟通效率。同时,它还能帮助初学者更快地理解和构建HTML结构,从而降低学习曲线。 总之,Emmet作为一款强大的代码辅助工具,无论是在日常开发...
1. **学习与研究**:了解Emmet插件如何与Eclipse IDE交互,如何解析和处理 Emmet 缩写,以及如何在IDE环境中实现高效编码功能。 2. **个性化定制**:根据个人或团队的需求,修改源代码以实现特定的功能,比如增加新...
Emmet使用技巧 里成包括安装过程,写代码过程中提高写代码速度用到的html缩写,css缩写
7. **CSS选择器**:Emmet还支持CSS选择器语法,如`.class1.class2`或`#id .class`,这在编写CSS时同样能提高效率。 8. **扩展和自定义**:Emmet允许用户自定义快捷键和扩展,使其更符合个人的编码习惯。 9. **数学...
6. **CSS缩写**:Emmet同样支持CSS属性的快速编写,如`w50`会扩展为`width: 50px;`,`t50`则变为`top: 50px;`。 7. **预定义的模板**:Emmet包含许多预定义的HTML和CSS模板,如`a[rel="noopener"]`快速生成一个链接...
Emmet是Web开发者的一款高效工具,它极大地提升了HTML和CSS编码的效率。这款神器最初名为Zen Coding,后来更名为Emmet,现在已经成为许多集成开发环境(IDE)和文本编辑器的标准组件,包括Eclipse。Emmet在Eclipse中...
Emmet 是一个强大的前端开发工具,它极大地提高了HTML和CSS编码的效率。在Sublime Text中,Emmet插件是必不可少的辅助工具,允许开发者快速...了解并熟练使用Emmet的各种功能,能让你的HTML和CSS编写工作更加高效流畅。
使用 Emmet Eclipse 插件,开发者可以享受到诸如自动完成、缩写展开、代码格式化等强大功能,提升 HTML 和 CSS 编码的效率。 具体来说,Emmet Eclipse 插件的功能包括但不限于: 1. **自动补全**:输入少量字符后...
Emmet 可以通过简短的缩写快速扩展为完整的HTML或CSS代码,对于Web开发者来说,它是一款不可或缺的生产力提升神器。 Sublime Text 是一款非常流行的、跨平台的文本编辑器,深受程序员喜爱,因为它拥有丰富的插件库...
在Sublime Text 2中集成Emmet插件,可以实现快速编写和扩展HTML结构以及CSS选择器。 Emmet的核心功能包括: 1. **Abbreviations(缩写)**:输入简短的缩写,按下扩展快捷键(默认Tab键),Emmet会将其转化为完整...
Emmet 是一款强大的前端开发辅助工具...通过熟练掌握Emmet,开发者可以在编写HTML和CSS时节省大量时间,提高工作效率。结合Sublime Text 3的强大功能,如代码高亮、多选编辑和自动完成,将使前端开发变得更加轻松愉快。