runoops.com

参考手册 第65页

HTML li type 属性

阅读(1358)

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

HTML legend align 属性

阅读(1836)

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

HTML label form 属性

阅读(1414)

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

HTML label for 属性

阅读(1470)

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

HTML keygen name 属性

阅读(1160)

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

HTML keygen keytype 属性

阅读(1107)

通过 RSA 算法生成密钥: 实例 Run this code » <form action="demo_keygen.html" method="get">   Username: <input type="text" ...

HTML keygen form 属性

阅读(1106)

位于 form 表单外面的 <keygen> 元素(但仍然属于 form 表单的一部分): 实例 Run this code » <form action="demo_keygen.html" method="get" i...

HTML keygen disabled 属性

阅读(1125)

一个被禁用的 <keygen> 元素: 实例 Run this code » <form action="demo_keygen.html" method="get">   Username: <input t...

HTML keygen autofocus 属性

阅读(1094)

让 "Encryption" 字段在页面加载时自动获得焦点: 实例 Run this code » <form action="demo_keygen.html" method="get"> Username: <inpu...

HTML li 标签

阅读(1609)

  HTML 两个列表实例: 一个有序列表 (<ol>) 和 一个无序列表 (<ul>) : 实例 Run this code » <ol>   <li>Coffee</li>  ...