atom 快捷编写html 标签常用写法
2017-05-13 本文已影响34人
smallnews
先上地址
https://docs.emmet.io/cheat-sheet/
html:5
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
#header
<div id="header"></div>
.title
<div class="title"></div>
form#search.abc
<form action="" id="search" class="abc"></form>
p.a.b.c
<p class="a b c"></p>
p[title="hello"]
<p title="hello"></p>
div{这是内容}
<div>这是内容</div>
ul.abc
<ul class="abc"></ul>
ul>.abcd
<ul>
<li class="abcd"></li>
</ul>