sublime3快捷 输入html

ID and CLASS attributes

html > // 直接生成整个框架 > 表示 tab建

#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>


Custom attributes



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>


Text: {}



a{Click me}
<a href="">Click me</a>
p>{Click }+a{here}+{ to continue}
<p>Click <a href="">here</a> to continue</p>
 

 http://www.bubuko.com/infodetail-476872.html

每天一小步,人生一大步!Good luck~
原文地址:https://www.cnblogs.com/jkmiao/p/4925825.html