【05】emmet系列之各种缩写
各种缩写
缩写:!
<!doctype html><html lang="en"><head><meta charset="UTF-8"><title>Document</title></head><body></body></html>
缩写:a
<a href=""></a>
缩写:a:link
<a href="http://"></a>
缩写:a:mail
<a href="mailto:"></a>
缩写:abbr
<abbr title=""></abbr>
缩写:acronym
<acronym title=""></acronym>
缩写:base
<base href=""/>
缩写:basefont
<basefont />
缩写:br
<br />
缩写:frame
<frame />
缩写:hr
<hr />
缩写:bdo
<bdo dir=""></bdo>
缩写:bdo:r
<bdo dir="rtl"></bdo>
缩写:bdo:l
<bdo dir="ltr"></bdo>
缩写:col
<col />
缩写:link
<link rel="stylesheet" href=""/>
缩写:link:css
<link rel="stylesheet" href="style.css"/>
缩写:link:print
<link rel="stylesheet" href="print.css" media="print"/>
缩写:link:favicon
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
缩写:link:touch
<link rel="apple-touch-icon" href="favicon.png"/>
缩写:link:rss
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.xml"/>
缩写:link:atom
<link rel="alternate" type="application/atom+xml" title="Atom" href="atom.xml"/>
缩写:meta
<meta />
缩写:meta:utf
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
缩写:meta:win
<meta http-equiv="Content-Type" content="text/html;charset=windows-1251"/>
缩写:meta:vp
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
缩写:meta:compat
<meta http-equiv="X-UA-Compatible" content="IE=7"/>
缩写:style
<style></style>
缩写:script
<script></script>
缩写:script:src
<script src=""></script>
缩写:img
<img src="" alt=""/>
缩写:iframe
<iframe src="" frameborder="0"></iframe>
缩写:embed
<embed src="" type=""/>
缩写:object
<object data="" type=""></object>
缩写:param
<param name="" value=""/>
缩写:map
<map name=""></map>
缩写:area
<area shape="" coords="" href="" alt=""/>
缩写:area:d
<area shape="default" href="" alt=""/>
缩写:area:c
<area shape="circle" coords="" href="" alt=""/>
缩写:area:r
<area shape="rect" coords="" href="" alt=""/>
缩写:area:p
<area shape="poly" coords="" href="" alt=""/>
缩写:form
<form action=""></form>
缩写:form:get
<form action="" method="get"></form>
缩写:form:post
<form action="" method="post"></form>
缩写:label
<label for=""></label>
缩写:input
<input type="text"/>
缩写:inp
<input type="text" name="" id=""/>
缩写:input:hidden
别名:input[type=hidden name]
<input type="hidden" name=""/>
缩写:input:h
别名:input:hidden
<input type="hidden" name=""/>
缩写:input:text, input:t
别名:inp
<input type="text" name="" id=""/>
缩写:input:search
别名:inp[type=search]
<input type="search" name="" id=""/>
缩写:input:email
别名:inp[type=email]
<input type="email" name="" id=""/>
缩写:input:url
别名:inp[type=url]
<input type="url" name="" id=""/>
缩写:input:password
别名:inp[type=password]
<input type="password" name="" id=""/>
缩写:input:p
别名:input:password
<input type="password" name="" id=""/>
缩写:input:datetime
别名:inp[type=datetime]
<input type="datetime" name="" id=""/>
缩写:input:date
别名:inp[type=date]
<input type="date" name="" id=""/>
缩写:input:datetime-local
别名:inp[type=datetime-local]
<input type="datetime-local" name="" id=""/>
缩写:input:month
别名:inp[type=month]
<input type="month" name="" id=""/>
缩写:input:week
别名:inp[type=week]
<input type="week" name="" id=""/>
缩写:input:time
别名:inp[type=time]
<input type="time" name="" id=""/>
缩写:input:number
别名:inp[type=number]
<input type="number" name="" id=""/>
缩写:input:color
别名:inp[type=color]
<input type="color" name="" id=""/>
缩写:input:checkbox
别名:inp[type=checkbox]
<input type="checkbox" name="" id=""/>
缩写:input:c
别名:input:checkbox
<input type="checkbox" name="" id=""/>
缩写:input:radio
别名:inp[type=radio]
<input type="radio" name="" id=""/>
缩写:input:r
别名:input:radio
<input type="radio" name="" id=""/>
缩写:input:range
别名:inp[type=range]
<input type="range" name="" id=""/>
缩写:input:file
别名:inp[type=file]
<input type="file" name="" id=""/>
缩写:input:f
别名:input:file
<input type="file" name="" id=""/>
缩写:input:submit
<input type="submit" value=""/>
缩写:input:s
别名:input:submit
<input type="submit" value=""/>
缩写:input:image
<input type="image" src="" alt=""/>
缩写:input:i
别名:input:image
<input type="image" src="" alt=""/>
缩写:input:button
<input type="button" value=""/>
缩写:input:b
别名:input:button
<input type="button" value=""/>
缩写:isindex
<isindex />
缩写:input:reset
别名:input:button[type=reset]
<input type="reset" value=""/>
缩写:select
<select name="" id=""></select>
缩写:option
<option value=""></option>
缩写:textarea
<textarea name="" id="" cols="30" rows="10"></textarea>
缩写:menu:context
别名:menu[type=context]>
<menu type="context"></menu>
缩写:menu:c
别名:menu:context
<menu type="context"></menu>
缩写:menu:toolbar
别名:menu[type=toolbar]>
<menu type="toolbar"></menu>
缩写:menu:t
别名:menu:toolbar
<menu type="toolbar"></menu>
缩写:video
<video src=""></video>
缩写:audio
<audio src=""></audio>
缩写:html:xml
<html xmlns="http://www.w3.org/1999/xhtml"></html>
缩写:keygen
<keygen />
缩写:command
<command />
缩写:bq
别名:blockquote
<blockquote></blockquote>
缩写:acr
别名:acronym
<acronym title=""></acronym>
缩写:fig
别名:figure
<figure></figure>
缩写:figc
别名:figcaption
<figcaption></figcaption>
缩写:ifr
别名:iframe
<iframe src="" frameborder="0"></iframe>
缩写:emb
别名:embed
<embed src="" type=""/>
缩写:obj
别名:object
<object data="" type=""></object>
缩写:src
别名:source
<source></source>
缩写:cap
别名:caption
<caption></caption>
缩写:colg
别名:colgroup
<colgroup></colgroup>
缩写:fst, fset
别名:fieldset
<fieldset></fieldset>
缩写:btn
别名:button
<button></button>
缩写:btn:b
别名:button[type=button]
<button type="button"></button>
缩写:btn:r
别名:button[type=reset]
<button type="reset"></button>
缩写:btn:s
别名:button[type=submit]
<button type="submit"></button>
【05】emmet系列之各种缩写的更多相关文章
- 【04】emmet系列之编辑器
[01]emmet系列之基础介绍 [02]emmet系列之HTML语法 [03]emmet系列之CSS语法 [04]emmet系列之编辑器 [05]emmet系列之各种缩写 前端开发人员,常用的是s ...
- 【03】emmet系列之CSS语法
[01]emmet系列之基础介绍 [02]emmet系列之HTML语法 [03]emmet系列之CSS语法 [04]emmet系列之编辑器 [05]emmet系列之各种缩写 单位: 有几个常用值别 ...
- 【02】emmet系列之HTML语法
[01]emmet系列之基础介绍 [02]emmet系列之HTML语法 [03]emmet系列之CSS语法 [04]emmet系列之编辑器 [05]emmet系列之各种缩写 初始化 :快速编写HTML ...
- 【01】emmet系列之基础介绍
[01]emmet系列之基础介绍 [02]emmet系列之HTML语法 [03]emmet系列之CSS语法 [04]emmet系列之编辑器 [05]emmet系列之各种缩写 相关网址 官网:http: ...
- emmet 系列(1)基础语法
emmet 系列(1)基础语法 emmet 是一个能显著提升开发html和css开发效率的web开发者工具 emmet基本上目前已知的编辑器都有相应的插件,各个编辑器的emmet插件的下载地址:点我下 ...
- Emmet 语法大全(缩写语法/sublime 插件)
Emmet 使用类似于 CSS 选择器的语法描述元素在生成的文档树中的位置及其属性. 元素 可以使用元素名(如 div 或者 p)来生成 HTML 标签.Emmet 没有预定义的有效元素名的集合,可以 ...
- 如何在“代码”视图中工作并充分利用 Dreamweaver 的编码功能。如 Emmet 缩写
可通过多种方式在 Dreamweaver 中处理代码. 您可以使用“新建文档”对话框打开新的代码文件,然后开始键入您的代码. 在 Dreamweaver 中创建新的代码文件 键入时,会显示代码提示以帮 ...
- Emmet的高级功能与使用技巧
Emmet系列教程 前端开发利器Emmet的介绍 Emmet快速编写HTML代码 Emmet快速编写CSS样式 Emmet快速编写CSS样式 编写好HTML和CSS代码时,我们也需要修改或添加一些内容 ...
- vim 中 也可以 直接安装 emmet 直接使用zen coding 生成 l指定个数的 lorem ipsum文字.
超链接的写法: 当作为链接的文字, 比较长时, 整个作为链接 就显得不是 很适合. 可以取其中的某一个单词 作为 超链接的 关键字:如: click here to continue emmet中如何 ...
随机推荐
- [SHOI2002]舞会
Descriptio 某学校要召开一个舞会,已知有N名学生,有些学生曾经互相跳过舞.当然跳过舞的一定是一个男生和一个女生,在这个舞会上,要求被邀请的学生中任一对男生和女生互相都不能跳过舞.问最多可邀请 ...
- TCP/IP网络协议基础
实验楼学习网络协议传送门 一.TCP/IP简介 TCP/IP(Transmission Control Protocol/Internet Protocol)是传输控制协议和网络协议的简称,它定义了电 ...
- 51nod 1024 矩阵中不重复的元素
1024 矩阵中不重复的元素 题目来源: Project Euler 基准时间限制:1 秒 空间限制:131072 KB 分值: 10 难度:2级算法题 收藏 关注 一个m*n的矩阵. 该矩阵的 ...
- ACboy needs your help HDU - 1712
ACboy needs your help HDU - 1712 ans[i][j]表示前i门课共花j时间最大收益.对于第i门课,可以花k(0<=k<=j)时间,那么之前i-1门课共花j- ...
- java的构造方法 this 重载
this1.隐含的局部变量在方法中指向调用该方法的对象()使用:当成员变量与局部变量同名的时候,通过this说明哪一个是成员变量.(this指向的是成员变量) 2.作为当前类的构造方法名存在作用:在构 ...
- JAVA Android王牌教程
Java基础 在Java基础系列文章中,我将说明Java的基础内容,特别是面向对象的相关概念. Java基础01 从HelloWorld到面向对象 Java基础02 方法与数据成员 Java基础03 ...
- IIS 安装了.net framework 4.0/4.5 却找不到相应应用程序池
通常情况下是因为没注册造成的,有些安装包会自己帮你注册上有些不会,感觉略坑. 注册方法:在计算机中点击 开始菜单–>运行 拷贝以下内容运行一下即可. C:\WINDOWS\Microsoft.N ...
- PHP文件及目录考察点
文件读取/写入操作 fopen()函数 用来打开一个文件,打开时需要指定打开模式 打开模式 模式 |作用 --- |--- 'r' |只读方式打开,将文件指针指向文件头. 'r+' |读写方式打开,将 ...
- Java并发——volatile关键字的使用
volatile关键字的使用volatile关键字原理适合使用volatile关键字的情况当且仅当满足以下所有条件时,才==应该==使用volatile关键字:volatile关键字的作用volati ...
- WebService 生成客户端
webservice 生成客户端 wsdl2java -encoding UTF-8 -p com.trm -d D:\happywork -client http://localhost/trm-t ...