美文网首页
VsCode中使用Emmet神器快速编写HTML代码

VsCode中使用Emmet神器快速编写HTML代码

作者: 郭海杰 | 来源:发表于2019-02-11 16:38 被阅读0次

    快速生成常用的html标签

    div => <div> </div>
    foo => <foo> </foo>
    html:5 => 将生成html5标准的包含body为空基本dom
    html:xt => 生成XHTML过渡文档类型,DOCTYPE为XHTML
    html:4s => 生成HTML4严格文档类型,DOCTYPE为HTML 4.01
    a:mail => <a href="mailto:"></a>
    a:link => <a href="http://"></a>
    base => <base href="">
    br =>

    link => <link rel="stylesheet" href="">
    script:src => <script src=""></script>
    form:get => <form action="" method="get"></form>
    label => <label for=""></label>
    input => <input type="text">
    inp => <input type="text" name="" id="">
    input:hidden => <input type="hidden" name=""> input:h亦可
    input:email => <input type="email" name="" id="">
    input:password => <input type="password" name="" id="">
    input:checkbox => <input type="checkbox" name="" id="">
    input:radio => <input type="radio" name="" id="">
    select => <select name="" id=""></select>
    option => <option value=""></option>
    bq => <blockquote></blockquote>
    btn => <button></button>
    btn:s => <button type="submit"></button>
    btn:r => <button type="reset"></button>

    相关文章

      网友评论

          本文标题:VsCode中使用Emmet神器快速编写HTML代码

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