美文网首页Atom
atom 快捷编写html 标签常用写法

atom 快捷编写html 标签常用写法

作者: smallnews | 来源:发表于2017-05-13 10:31 被阅读34次

    先上地址

    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>
    

    相关文章

      网友评论

        本文标题:atom 快捷编写html 标签常用写法

        本文链接:https://www.haomeiwen.com/subject/jklxxxtx.html