HTML menu 标签
两个菜单按钮系列选项实例("File" 和 "Edit"): 实例 Run this code » <menu type="toolbar"> <li> <menu label="File"> <b...
两个菜单按钮系列选项实例("File" 和 "Edit"): 实例 Run this code » <menu type="toolbar"> <li> <menu label="File"> <b...
部分文本高亮显示: 实例 Run this code » <p>Do not forget to buy <mark>milk</mark> today.</p> 浏览器支持 Internet...
带有可点击区域的图像映射: 实例 Run this code » <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">...
使用 main 标签来展示文档的主体部分: 实例 Run this code » <main> <h1>Web 浏览器</h1> <p>Google Chrome、Firefox 以及 Int...
链接到外部样式文件: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head> ...
在有序列表中使用 value 属性: 实例 Run this code » <ol> <li value="100">Coffee</li> <li>Tea</li> ...
在有序列表和无序列表中使用 type 属性: 实例 Run this code » <ol> <li>Coffee</li> <li type="a">Tea</li> ...
对标题进行右对齐: 实例 Run this code » <form> <fieldset> <legend align="right">Personalia:</legend> ...
位于 form 表单外的 <label> 元素(但仍然属于 form 表单的一部分): 实例 Run this code » <form action="demo_form.html" id="form1"> &...
两个带有 label 的单选按钮: 实例 Run this code » <form action="demo_form.html"> <label for="male">Male</label> ...