Home > Web Front-end > HTML Tutorial > Use of Emmet (formerly Zencoding)_html/css_WEB-ITnose

Use of Emmet (formerly Zencoding)_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:34:53
Original
981 people have browsed it

Emmet is the previous Zencoding

div.wrapper#wrapper>div.right+div.left*2>span{nimei$}*3//. 类名 #id >下面 +同类 *2前面的来两个 {}里面的东西就是span里面的东西
Copy after login

which will generate code like

<div class="wrapper" id="wrapper">    <div class="right"></div>    <div class="left">        <span>nimei1</span>        <span>nimei2</span>        <span>nimei3</span>    </div>    <div class="left">        <span>nimei1</span>        <span>nimei2</span>        <span>nimei3</span>    </div></div>
Copy after login

.

In css, w200, h5p and m1e will be automatically generated respectively:

width: 200px;height: 5%;margin: 1em;
Copy after login

It seems very awesome.

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template