HTML li type 属性
在有序列表和无序列表中使用 type 属性: 实例 Run this code » <ol> <li>Coffee</li> <li type="a">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> ...
带有 keygen 字段的表单: 实例 Run this code » <form action="demo_keygen.html" method="get"> Username: <input type="text...
通过 RSA 算法生成密钥: 实例 Run this code » <form action="demo_keygen.html" method="get"> Username: <input type="text" ...
位于 form 表单外面的 <keygen> 元素(但仍然属于 form 表单的一部分): 实例 Run this code » <form action="demo_keygen.html" method="get" i...
一个被禁用的 <keygen> 元素: 实例 Run this code » <form action="demo_keygen.html" method="get"> Username: <input t...
让 "Encryption" 字段在页面加载时自动获得焦点: 实例 Run this code » <form action="demo_keygen.html" method="get"> Username: <inpu...
HTML 两个列表实例: 一个有序列表 (<ol>) 和 一个无序列表 (<ul>) : 实例 Run this code » <ol> <li>Coffee</li> ...