Notepad++插件emmet快速写html笔记

来源:互联网 发布:淘宝产品摄影价格表 编辑:程序博客网 时间:2024/06/06 10:40

今天起,学习html,选择用Notepad++。觉得可以使其更方便使用。发现了emmet这个小插件觉得非常好用。把一些自己用的过程中方法记录下来。
html:5 快速生成html5基本框架

<!doctype html><html lang="en"><head>    <meta charset="UTF-8">    <title>Document</title></head><body></body></html>

link:css

<link rel="stylesheet" href="style.css">

ul>li.item-$*5>a

<ul>    <li class="item-1"><a href=""></a></li>    <li class="item-2"><a href=""></a></li>    <li class="item-3"><a href=""></a></li>    <li class="item-4"><a href=""></a></li>    <li class="item-5"><a href=""></a></li></ul> 

>代表包含在里面,. 表示class元素,# 表示id元素
base

<base href="">

标签代表页面中所有链接默认地址或者默认目标

0 0