首页 > 代码库 > HTML5 扩展内容学习

HTML5 扩展内容学习

1、HTML accesskey 属性:带有指定快捷键的超链接:

示例代码:

<a href="http://www.w3school.com.cn/html/" accesskey="h">HTML 教程</a><br />

注释:请使用Shift + Alt + accessKey来访问带有指定快捷键的元素。

2、id、class与style:

  1)、id保持唯一性;

  2)、class多用在css样式中,定义样式类名;

  3)、指定标签的内联样式;

3、contenteditable 可编辑属性 & spellcheck 拼写检查属性

<!DOCTYPE html>
<html>
  <body>
    <div contenteditable="true" spellcheck="true">
      This text can be edited by the user.
    </div>
  </body>
</html>

4、语言lang 与 dir (文字书写方向)

<div lang="zh-CN“>浏览器可识别的中文内容</div>
<div lang="en“>The browser can recognize the English content</div>

    dir 属性标识一段文字的书写方向,ltr默认属性,从左到右显示,rtl从右向左显示文本内容。

<p dir="ltr">Write this text left-to-right!</p>
<p dir="rtl">Write this text right-to-left!</p>

5、title属性:用title属性代替img元素的alt属性或作为图片的标题是被禁止的。

6、隐藏元素:

<p hidden>我是隐藏元素</p>

  

   

 

  

HTML5 扩展内容学习