설치 Sublime Text - 설치를 읽어보세요. sublime에 내장된 단축키를 사용하면 HTML 작성이 매우 빠릅니다.
다음은 일반적으로 사용되는 내용입니다. 자세한 내용은 emmet 공식 문서를 참조하세요.
!
또는 html:5
, HTML5 구조를 빠르게 생성 (Tab 키를 다시 눌러야 합니다)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> </body> </html>
html:xt
HTML4 전환 생성
html:4s
HTML4 엄격한 유형
태그 #인 ID 이름을 생성합니다. 예: p#header
<p id="header"></p>
태그 포함. 클래스 이름(예: p.title
<p class="title"></p>
: nav>ul>li
<nav> <ul> <li></li> </ul> </nav>
예: p+p+p
<p></p> <p></p> <p></p>
<p></p> <p></p>
p^p
7. 여러 요소를 반복적으로 생성합니다: * 예: <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul>
ul>li*5
8. 사용자 정의 <p value="1"></p>
p[value=1]
9. 텍스트 콘텐츠 생성: {}<a href="">Click me</a>
a{Click me}
10 . 번호 추가: $
<p class="item1">01</p> <p class="item2">02</p> <p class="item3">03</p>
p.item${$$}*3
<p class="item3">03</p> <p class="item2">02</p> <p class="item1">01</p>
p.item$@-{$$@-}*3
<p class="item4">04</p> <p class="item5">05</p> <p class="item6">06</p>
p.item$@4{$$@4}*3
11.그룹<ul> <ol></ol> </ul> <ul> <ol></ol> </ul> <ul> <ol></ol> </ul>
(ul>ol)*3
어서종합사례<table id="tab" value="1" class="a"> <tr> <td>01<span></span></td> <td>02<span></span></td> <td>03<span></span></td> </tr> <tr> <td>01<span></span></td> <td>02<span></span></td> <td>03<span></span></td> </tr> <tr> <td>01<span></span></td> <td>02<span></span></td> <td>03<span></span></td> </tr> </table>
table#tab[value=1].a>tr*3>(td{$$}>span)*3
CSS 생성css 약어는 ov:h == ov-h == ovh == oh와 같은 퍼지 검색을 사용하여 일치됩니다.
<a href="http://www.php.cn/wiki/835.html" target="_blank">너비<li>: 10px; </li></a>
w10p w10e <a href="http://www.php.cn/wiki/835.html" target="_blank">width</a>: 10px;
w10x width: 10%;
width: 10em;
width: 10xe;
<a href="http://www.php.cn/wiki/836%20.html" target="_blank">높이<li>: 10px;</li></a>
<a href="http://www.php.cn/wiki/836.html" target="_blank">height</a>: 10px;
<a href="http://www.php.cn%20/wiki/902.html" target="_blank">위치<li>: 상대;</li></a>
poa <a href="http://www.php.cn/wiki/902.html" target="_blank">position</a>: relative;
position: absolute;
<a href="http%20://www.php.cn/wiki/919.html" target="_blank">float<li>: 왼쪽;</li></a>
fr float: <a href="http://www.php%20.cn/wiki/905.html" target="_blank">오른쪽<p style="text-align: left;">;</p></a>
<a href="http://www.php.cn/wiki/919.html" target="_blank">float</a>: left;
float: <a href="http://www.php.cn/wiki/905.html" target="_blank">right</a>;
dt <a href="http://www%20.php.cn/wiki/927.html" target="_blank">디스플레이<li>: 테이블;</li></a>
db dib <a href="http://www.php.cn/wiki/927.html" target="_blank">display</a>: table;
display: block;
display: inline-block;
<a href="http://www.php.cn/wiki/926.html" target="_blank">overflow-y</a>: hidden;
<a href="http://www.php.cn/wiki/917.html" target="_blank">삭제<li>: 둘 다;</li></a>
<a href="http://www.php.cn/wiki/917.html" target="_blank">clear</a>: both;
<a href="http://www.php.cn/wiki/933.html" target="_blank">여백-상단<li>: ;</li></a>
mb <a href="http://www.php.cn/wiki/935.html" target="_blank">여백-하단<p style="text-align: left;">: ;</p></a>
<a href="http://www.php.cn/wiki/933.html" target="_blank">margin-top</a>: ;
pt <a href="http://www.php.cn/wiki/949.html" target="_blank">padding-top</a>: ;
pb <a href="http://www.php.cn/wiki/951.html" target="_blank">padding-bottom</a>: ;
tac <a href="http://www.php.cn/wiki/870.html" target="_blank">text-align</a>: center;
lh <a href="http://www.php.cn/wiki/864.html" target="_blank">line-height</a>:;
tsn <a href="http://www.php.cn/wiki/861.html" target="_blank">text-shadow</a>: none;
tja <a href="http://www.php.cn/wiki/881.html" target="_blank">text-justify</a>: auto;
c color: #000;
cr color: rgb(0, 0, 0);
cra color: rgba(0, 0, 0, .5);
op opacity: ;
cnt content: '';
ol <a href="http://www.php.cn/wiki/938.html" target="_blank">outline</a>: ;
bd+ border: 1px solid #000;
bdb+ border-bottom: 1px solid #000;
bd2px#333s border: 2px #333 solid;
如果没作用请检查快捷键是否冲突
快速生成包裹标签:Ctrl+Shift+G
只有文本没有结构时,如下
首页 简介 动态
选中文本按快捷键Ctrl+Shift+G,再弹出的:Enter Wrap Abbreviation(输入扩展缩写)中输入nav>ul>li.item$*>a
就会生成
<nav> <ul> <li class="item1"><a href="">首页</a></li> <li class="item2"><a href="">简介</a></li> <li class="item3"><a href="">动态</a></li> </ul> </nav>
如果原先的文本带编号,不想要则可以在上面的基础上加|t
,nav>ul>li.item$*>a|t
即可生成如上结果。
1首页 2简介 3动态
自动添加/更新图片尺寸:ctrl+U
光标移到标签上的任意位置,按下快捷键ctrl+U
即可。
<img src="img/x1.png" /> <img src="img/x1.png" width="100" height="200" />
删除标签:shift+ctrl+;
定位到上个编辑点:ctrl+alt+left
定位到下个编辑点:ctrl+alt+right
选中下一项:shift+ctrl+.
加/减1:ctrl+up/ctrl+down
加/减10:shift+alt+up/shift+alt+down
展开缩写:ctrl+e(和tab键作用相同)
重命名标签(rename_tag):ctrl+shift+'
更换标签(update_as_you_type):ctrl+Shift+U
匹配标签对:ctrl+alt+j
输入lorem
再按tab会随机生成一段英文,默认是生成30个单词,可以加上数字控制单词数量,如lorem5
。
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis incidunt, expedita voluptates ratione praesentium error a accusamus corporis deleniti. Cum, debitis id, in rem exercitationem at voluptatum illum minima corporis!
Lorem ipsum dolor sit amet.
위 내용은 Sublime Text 플러그인 Emmet 사용법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!