runoops.com

HTML 参考手册 第43页

HTML5 mark 标签

阅读(1539)

部分文本高亮显示: 实例 Run this code » <p>Do not forget to buy <mark>milk</mark> today.</p> 浏览器支持 Internet...

HTML map 标签

阅读(1660)

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

HTML main 标签

阅读(1598)

使用 main 标签来展示文档的主体部分: 实例 Run this code » <main> <h1>Web 浏览器</h1> <p>Google Chrome、Firefox 以及 Int...

HTML link 标签

阅读(1572)

链接到外部样式文件: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head> ...

HTML li value 属性

阅读(1338)

在有序列表中使用 value 属性: 实例 Run this code » <ol>   <li value="100">Coffee</li>   <li>Tea</li>   ...

HTML li type 属性

阅读(1260)

在有序列表和无序列表中使用 type 属性: 实例 Run this code » <ol>   <li>Coffee</li>   <li type="a">Tea</li>  ...

HTML legend align 属性

阅读(1764)

对标题进行右对齐: 实例 Run this code » <form>   <fieldset>     <legend align="right">Personalia:</legend> ...

HTML label form 属性

阅读(1326)

位于 form 表单外的 <label> 元素(但仍然属于 form 表单的一部分): 实例 Run this code » <form action="demo_form.html" id="form1">   &...

HTML label for 属性

阅读(1388)

两个带有 label 的单选按钮: 实例 Run this code » <form action="demo_form.html">   <label for="male">Male</label>  ...

HTML keygen name 属性

阅读(1072)

带有 keygen 字段的表单: 实例 Run this code » <form action="demo_keygen.html" method="get">   Username: <input type="text...