HTML5探索一(那些新增的标签和属性)

tml5相比html4,添加了部分语义化的标签和属性,现在我们就从这些标签和属性开始,学习html5吧。

首先,认识下HTML5新的文档类型:

<!DOCTYPE html>

那些新标签

格式

  1. <bdi> 定义文本的文本方向,使其脱离其周围文本的方向设置
  2. <mark> 定义有记号的文本
  3. <meter> 定义预定义范围内的度量
  4. <progress> 定义任何类型的任务的进度
  5. <rp> 定义若浏览器不支持ruby元素显示的内容
  6. <rt> 定义ruby注释的解释
  7. <ruby> 定义ruby注释
  8. <time> 定义日期/时间
  9. <wbr> 强制定义换行点

HTML:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>HTML5 Test Page 1</title>
  </head>
  <body>
    <div><bdi>BDI:在发布用户评论或其他您无法完全控制的内容时,该标签很有用 test</bdi></div>
    <hr />
    <div><mark>Mark:定义带有记号的文本</mark></div>
    <hr />
    <div style="width:200px;border:1px solid red;"><meter value="10" />Meter</div>
    <hr />
    <div><progress value="10" max="100"></progress>Progress: 用于显示进度,结合JS一同使用</div>
    <hr />
    <div>我在 <time datetime="2008-02-14">情人节</time> 有个约会
    <mark>该标签不会再在任何浏览器中呈现任何特殊效果,仅仅方便搜索引擎生成更智能的结果</mark>
    </div>
    <hr />
    <div>
      <p>如果想学习 AJAX,那么您必须熟悉 XML<wbr>Http<wbr>Request 对象。</p>
      <mark>wbr可强制设置换行点</mark>
    </div>
  </body>
</html>

表单

  1. <datalist> 定义下拉列表
  2. <keygen> 定义生成密钥
  3. <output> 定义输出的一些类型

HTML:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>HTML5 Test Page 2</title>
  </head>
  <body>
    <form method="post">
      <p>datalist:和input元素配合,用于定义input可能的值</p>
      <input id="lang" list="dl" />
      <datalist id="dl">
        <option value="C#" />
        <option value="Java" />
        <option value="PHP" />
      </datalist>
      <hr />
      <p>keygen:提交密钥串到服务器</p>
      Username: <input type="text" name="usr_name" />
      Encryption: <keygen name="security" />
      <input type="submit" />
      <hr />
    </form>
    <p>output:定义不同类型的输出</p>
    <form oninput="x.value=parseInt(a.value)+parseInt(b.value)">
      0
      <input type="range" id="a" value="50">100
      +<input type="number" id="b" value="50">
      =<output name="x" for="a"></output>
    </form>
  </body>
</html>

图像

  1. <canvas> 定义图形
  2. <figcaption> 定义figure元素的标题
  3. <figure> 定义媒介内容的分组,以及它们的标题

HTML:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>HTML5 Test Page 3</title>
  </head>
  <body>
    <div>
      <p>canvas:你懂的,画布,各种绚丽效果就靠它了。</p>
      <canvas id="c"></canvas>
      <script>
        var canvas=document.getElementById(‘c‘);
        var ctx=canvas.getContext(‘2d‘);
        ctx.fillStyle=‘#FF0000‘;
        ctx.fillRect(0,0,80,100);
      </script>
    </div>
    <hr />
    <div>
      <p>
      figure: 规定独立的流内容(图像、图表、照片、代码等等),figure 元素的内容应该与主内容相关,但如果被删除,则不应对文档流产生影响。
      <br />
      figcaption:定义 figure 元素的标题,语义化</p>
      <figure>
        <figcaption>黄浦江上的的卢浦大桥</figcaption>
        <img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSehM_6Bfd79RwCCy1wNj_K6YGEkMsdt0Gekn10Dc6xJ8nxDcS7rg" width="350" height="234" />
      </figure>
    </div>
  </body>
</html>

音频/视频

  1. <audio> 定义声音内容
  2. <source> 定义媒介源
  3. <track> 定义用在媒体播放器中的文本轨道
  4. <video> 定义视频

链接

  1. <nav> 定义导航链接

列表

  1. <command> 定义命令按钮 --注:现在浏览器暂时都不支持

样式/节 -- 语义化标签

  1. <header> 定义section或page的页眉
  2. <footer> 定义section或page的页脚
  3. <section> 定义section
  4. <article> 定义文章
  5. <aside> 定义页面内容之外的内容
  6. <details> 定义元素细节
  7. <dialog> 定义对话框或窗口
  8. <summary> 为<details>元素定义可见的标题

编程

<embed> 为外部应用程序(非HTML)定义容器

那些新属性

  1. contenteditable 规定元素内容是否可编辑
  2. contextmenu 规定元素的上下文菜单。上下文菜单在用户点击元素时显示
  3. data-* 用于存储页面或应用程序的私有定制数据
  4. draggable 规定元素是否可拖动
  5. dropzone 规定在拖动被多动数据时是否进行复制、移动或链接
  6. hidden 规定元素仍未或不再相关
  7. spellcheck 规定是否对元素进行拼写和语法检查
  8. translate 规定是否应该翻译元素内容

以上全局属性可用于任何HTML元素

参考资料

  1. http://www.w3schools.com/tags/

*:first-child {
margin-top: 0 !important;
}

body>*:last-child {
margin-bottom: 0 !important;
}

/* BLOCKS
=============================================================================*/

p, blockquote, ul, ol, dl, table, pre {
margin: 15px 0;
}

/* HEADERS
=============================================================================*/

h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
}

h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code {
font-size: inherit;
}

h1 {
font-size: 28px;
color: #000;
}

h2 {
font-size: 24px;
border-bottom: 1px solid #ccc;
color: #000;
}

h3 {
font-size: 18px;
}

h4 {
font-size: 16px;
}

h5 {
font-size: 14px;
}

h6 {
color: #777;
font-size: 14px;
}

body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}

a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}

h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}

/* LINKS
=============================================================================*/

a {
color: #4183C4;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* LISTS
=============================================================================*/

ul, ol {
padding-left: 30px;
}

ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}

ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}

dl {
padding: 0;
}

dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}

dl dt:first-child {
padding: 0;
}

dl dt>:first-child {
margin-top: 0px;
}

dl dt>:last-child {
margin-bottom: 0px;
}

dl dd {
margin: 0 0 15px;
padding: 0 15px;
}

dl dd>:first-child {
margin-top: 0px;
}

dl dd>:last-child {
margin-bottom: 0px;
}

/* CODE
=============================================================================*/

pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}

code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}

pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}

pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}

pre code, pre tt {
background-color: transparent;
border: none;
}

kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}

/* QUOTES
=============================================================================*/

blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}

blockquote>:first-child {
margin-top: 0px;
}

blockquote>:last-child {
margin-bottom: 0px;
}

/* HORIZONTAL RULES
=============================================================================*/

hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}

/* IMAGES
=============================================================================*/

img {
max-width: 100%
}
-->

时间: 2024-11-02 21:25:31

HTML5探索一(那些新增的标签和属性)的相关文章

HTML5新增的标签与属性

一.关于DTD HTML5 不基于 SGML,所以不需要引用 DTD(HTML 4.01 基于 SGML) 二.HTML5结构标签 <header> 标记定义一个页面或一个区域的头部 <nav> 标记定义导航链接 <section> 标记定义一个区域 <aside> 标记定义页面内容部分的侧边栏 <article> 标记定义一篇文章 <hgroup> 标记定义文件中一个区块的相关信息 <figure> 标记定义一组媒体内容

HTML5新增Canvas标签及对应属性、API详解(基础一)

知识说明: HTML5新增的canvas标签,通过创建画布,在画布上创建任何想要的形状,下面将canvas的API以及属性做一个整理,并且附上时钟的示例,便于后期复习学习!Fighting! 一.标签原型 <canvas width=”1000” height=”1000” id=”myCanvas”> 您的浏览器版本过低,不支持HTML5新增的canvas标签. </canvas> 使用js获取该画布,并指定对象 <script> Var canvasID = doc

重温html5的新增的标签和废除的标签

HTML5已经盛行有段时间了,对于标签的使用,按照规范,哪些该用,哪些不该用,你是否都掌握了呢.今天我在这里详细列举下: 新增的结构标签 section元素 表示页面中的一个内容区 块,比如章节.页眉.页脚或页面的其他部分.可以和h1. h2……等元素结合起来使用,表示文档结构.例:HTML5中<section>……</section>:HTML4 中<div> ……</div>. article元素 表示页面中一块与上下文不相关的独立内容.比如一篇文章.

html5新增的标签和使用的方法

html5新增的标签: /*<article> 标签定义独立的内容.*/ <article> <h1>标题</h1> <a href="#">你好</a> <p>这是一段文件内容</p> </article> /*<aside> 标签定义其所处内容之外的内容. 提示:提示:<aside> 的内容可用作文章的侧栏.*/ <p>Me and my

html5的新增的标签和废除的标签

新增的结构标签 section元素 表示页面中的一个内容区块,比如章节.页眉.页脚或页面的其他部分.可以和h1. h2……等元素结合起来使用,表示文档结构.例:HTML5中<section>……</section>;HTML4中<div> ……</div>. article元素 表示页面中一块与上下文不相关的独立内容.比如一篇文章. aside元素 表示article元素内容之外的.与article元素内容相关的辅助信息. header元素 表示页面中一个内

HTML5自学笔记[ 1 ]新增标签

新增语义化标签 <header></header>: 用于页面或板块头部. <footer></footer>:用于页面底部. <nav></nav>:导航. <hgroup></hgroup>:标题组合. <section></section>:一个板块或区块,用来划分区域. <article></article>:一般用来呈现论坛的一篇帖子. <asid

[html5] 学习笔记-表单新增的元素与属性(续)

本节主要讲解表单新增元素的controls属性.placeholder属性.List属性.Autocomplete属性.Pattern属性.SelectionDirection属性.Indeterminate属性.Image提交按钮的宽高属性. 1.controls属性 在html5中,可以在标签内部放置一个表单元素,并且通过该标签的controls属性来访问该表单元素. 1 <body> 2 <script> 3 function setValue(){ 4 var label

HTML5 移动开发 (HTML5标签和属性)

   第一阶    1.如何使用HTML5中的新标签及属性    2.HTML5中的其它变化    3.HTML5的移动支持    4.使用HTML5开发移动WEB引用的理由 第二阶    HTML5为HTML规范加入了一些新的特性,其中最容易理解的就是新的标签.它们过去从未成为HTML的一部分,但现在却是HTML元素了.    大部分新标签被称为“分节”元素,它们为HTML文档布局分段提供语义.    部分如下:    <article>       文档或站点的一个独立部分    <

HTML5中新加的标签和属性定义

HTML5 <!DOCTYPE> 标签所有主流浏览器都支持 <!DOCTYPE> 声明.<!DOCTYPE> 声明非常重要,它是一种标准通用标记语言的文档类型声明,通过该标签,浏览器能够了解HTML5文档正在使用的HTML规范,<!DOCTYPE> 声明是HTML5文档的起始点,也就是说它必须位于HTML5文档的第一行!标签定义及使用说明:<!DOCTYPE> 声明位于文档中的最前面的位置,处于 <html> 标签之前.<!DO