runoops.com

HTML 参考手册 第41页

HTML meta content 属性

阅读(1216)

描述 HTML 文档内的元数据: 实例 Run this code » <head> <meta name="description" content="Free Web tutorials"> <meta n...

HTML meta charset 属性

阅读(1016)

规定 HTML 文档的字符编码: 实例 Run this code » <head> <meta charset="UTF-8"> </head> 浏览器支持 所有主流浏览器都支持 charset 属性。...

HTML menu type 属性

阅读(977)

带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都是一个带有一系列选项的下拉菜单: 实例 Run this code » <menu type="toolbar"> <li> <menu l...

HTML menu label 属性

阅读(951)

带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都是一个带有一系列选项的下拉菜单: 实例 Run this code » <menu type="toolbar"> <li> <menu l...

HTML map name 属性

阅读(1107)

带有可点击区域的图像映射: 实例 Run this code » <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">...

HTML link type 属性

阅读(1007)

在下面的实例中,type 属性指示了被链接的文档是一个外部的样式表: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme...

HTML link target 属性

阅读(1002)

在下面的实例中,会在新窗口中加载被链接文档: 实例 <head> <link rel="parent" href="wildcats.htm" target="_blank"> </head> 浏览器支持...

HTML link sizes 属性

阅读(1212)

带有指定尺寸的图标: 实例 Run this code » <link rel="icon" href="demo_icon.gif" type="image/gif" sizes="16x16"> 浏览器支持 目前几乎没有主流...

HTML link rev 属性

阅读(997)

在下面的实例中,rev 属性指示当前文档是 "wildcats.htm" 的父页面: 实例 <head> <link rev="parent" href="wildcats.htm"> </head> 浏...

HTML link rel 属性

阅读(1108)

一个外部的样式表: 实例 Run this code » <link rel="stylesheet" type="text/css" href="theme.css"> 浏览器支持 所有主流浏览器都支持 rel 属性。 定义和...