Emmet Plugin is the predecessor of the famous Zen coding, if you are engaged in web front-end development, the plugin must not be unfamiliar. It uses the syntax of the faux CSS selector to generate code, greatly improving the speed of HTML/CSS code writing, such as the following demo:
The plugin has been renamed to Emmet. but Emmet not only renamed, but also brought some new features. This article is to show you intuitively.
first, quickly write HTML code
1. Initialize
HTML documents need to contain some fixed tags, such as
- Html:5 or!: for HTML5 document types
- HTML:XT: For XHTML transition Document types
- Html:4s: For HTML4 Strict document types
2. Easily add classes, IDs, text, and attributes
Continuous INPUT element names and Id,emmet will be automatically complete for you, such as input p#foo:
Successive input classes and IDs, such as P.bar#foo, are generated automatically:
HTML code
- <p class="Bar" id="foo"></P>
Here's a look at how to define the content and properties of HTML elements. You can automatically generate the following code by entering H1{foo} and a[href=#]:
HTML code
- <H1>foo</H1>
- <a href="#"></a>
3. Nesting
Now you just need 1 lines of code to implement the nesting of tags.
- : A child element symbol that represents a nested element
- +: Sibling tag symbol
- ^: You can raise the label in front of the symbol by one line
The effect is as follows:
4. Grouping
You can quickly generate blocks of code by nesting and parentheses, such as input (. foo>h1) + (. bar>h2), which automatically generates the following code:
HTML code
- <div class="foo">
- <H1></h1>
- </div>
- <div class="Bar">
- <h2></h2>
- </div>
5. Implicit tags
Declare a tag with a class, just enter Div.item, generate <div class= "item" ></div>.
In previous versions, you can omit the Div, which is the input. Item to generate <div class= "item" ></div>. Now if you enter only. Item, Emmet is judged based on the parent tag. For example, entering. Item in <ul> will generate <li class= "item" ></li>.
Here are all the implicit tag names:
- Li: Used in UL and OL
- TR: For table, Tbody, THEAD, and Tfoot
- TD: Used in TR
- Option: for Select and Optgroup
6. Define multiple elements
To define multiple elements, you can use the * symbol. For example, UL>LI*3 can generate the following code:
HTML code
- <ul>
- <li></li>
- <li></li>
- <li></li>
- </ul>
7. Define multiple elements with attributes
If you enter ul>li.item$*3, the following code will be generated:
HTML code
- <ul>
- <li class="item1"></li>
- <li class="item2"></li>
- <li class="Item3"></li>
- </ul>
Of course here to ul>li#item$*3 is also possible, the results are as follows
<ul>
<li id= "Item1" ></li>
<li id= "Item2" ></li>
<li id= "Item3" ></li>
</ul>
Second, the CSS abbreviation
1. Value
For example, to define the width of an element, simply enter w100 to generate
CSS Code
- width:100px;
In addition to PX, other units can be generated, such as input h10p+m5e, the result is as follows:
CSS Code
- Height: 10%;
- Margin:5em;
List of unit aliases:
- p =%
- E means EM
- X means ex
- PX or no unit can be expressed as PX//Kerita
2. Additional Properties
Maybe you've already learned some abbreviations, such as @f, that you can generate:
CSS Code
- @font-face {
- Font-family:;
- Src:url ();
- }
Some additional options, such as Background-image, Border-radius, Font, @font-face,text-outline, Text-shadow, etc., can be generated by the "+" symbol, such as input @f+, will be generated:
CSS Code
- @font-face {
- font-family: ' fontname ';
- Src:url (' Filename.eot ');
- Src:url ('filename.eot #iefix ') format (' Embedded-opentype '),
- URL ('filename.woff ') format (' Woff '),
- URL (' Filename.ttf ') format (' TrueType '),
- URL ('filename.svg#fontname ') format (' svg ');
- Font-style:normal;
- Font-weight:normal;
- }
3. Fuzzy matching
If you are unsure of some abbreviations, Emmet will match your input to the closest syntax, such as input ov:h, ov-h, OVH, and oh, and the generated code is the same:
CSS Code
- Overflow:hidden;
4. Vendor prefix
If you enter a non-standard CSS property, Emmet will automatically add a vendor prefix, such as entering TRS, to generate:
CSS Code
- -webkit-transform:;
- -moz-transform:;
- -ms-transform:;
- -o-transform:;
- Transform:;
You can also prefix any property with a "-" symbol, or you can add it to the attribute. such as input-super-foo:
CSS Code
- -webkit-super-foo:;
- -moz-super-foo:;
- -ms-super-foo:;
- -o-super-foo:;
- Super-foo:;
If you do not want to add all the prefixes, you can use abbreviations to specify, such as-WM-TRF to add only the-webkit and-moz prefixes:
CSS Code
- -webkit-transform:;
- -moz-transform:;
- Transform:;
The prefix is abbreviated as follows:
- W indicates-webkit-
- M represents-moz-
- s represents-ms-
- O indicates-o-
5. Gradients
Entering LG (left, #fff 50%, #000) generates the following code:
CSS Code
- background-image: -webkit-gradient (linear, 0 0, 100% 0 , color-stop (0.5, #fff), to (#000));
- background-image: -webkit-linear-gradient (left, # Fff 50%, #000)
- Background-image: -moz-linear-gradient (left, #fff 50%, # 000)
- background-image: -o-linear-gradient (left, #fff 50%, #000)
- Background-image: linear-gradient (left, #fff 50%, # 000)
third, additional functions
generate Lorem ipsum text
Lorem ipsum refers to a Latin article commonly used in the field of typography, the main purpose of which is to test the effect of an article or text in different font and version types. With Emmet, you can simply enter Lorem or lipsum to generate the text. You can also specify the number of words, such as LOREM10, that will be generated:
Reference Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero Delectus.
Iv. Customization
You can also customize the Emmet plugin:
- To add a new abbreviation or update an existing abbreviation, you can modify the Snippets.json file
- Change the behavior of Emmet filters and actions to modify the Preferences.json file
- Define how to generate HTML or XML code to modify the Syntaxprofiles.json file
v. Plugins for different editors
Emmet supports the following editor (linked to the Emmet plugin for the editor):
- Sublime Text 2
- TextMate 1.x
- Eclipse/aptana
- Coda 1.6 and 2.x
- Espresso
- Chocolat (added via the "Install Mixin" dialog box)
- Komodo Edit/ide (added via tools→add-ons menu)
- notepad++
- PSPad
- <textarea>
- Codemirror2/3
- Brackets
Related documents: http://docs.emmet.io/(which contains a demo, you can experiment with the abbreviations mentioned in the article)
Original link: http://www.iteye.com/news/27580
Emmet Plugin: Html/css Code Quick write artifact