HTML <legend>表单属性用于指定图例元素所属的一种或多种表单。
用法:
<button form="form_id">
属性值:
- form_id:它包含值(即form_id),该值指定按钮元素所属的一个或多个。此属性的值应为
例子:
<!DOCTYPE html>
<html>
<head>
<title>
HTML legend align Attribute
</title>
<style>
form {
width:50%;
}
label {
display:inline-block;
float:left;
clear:left;
width:90px;
margin:5px;
text-align:left;
}
input[type="text"] {
width:250px;
margin:5px 0px;
}
.gfg {
font-size:40px;
color:green;
font-weight:bold;
}
</style>
</head>
<body>
<h1 class="gfg">
GeeksforGeeks
</h1>
<h2>HTML legend form Attribute </h2>
<form>
<fieldset>
<legend align="right"
form="myGeeks">
STUDENT:
</legend>
<label>Name:</label>
<input type="text">
<br>
<label>Email:</label>
<input type="text">
<br>
<label>Date of birth:</label>
<input type="text">
<br>
<label>Address:</label>
<input type="text">
<br>
<label>Enroll No:</label>
<input type="text">
</fieldset>
</form>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML <legend>表单属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
相关用法
- HTML <form> name属性用法及代码示例
- HTML form属性用法及代码示例
- HTML <form> enctype属性用法及代码示例
- HTML <form> novalidate属性用法及代码示例
- HTML <fieldset> form属性用法及代码示例
- HTML <object> form属性用法及代码示例
- HTML <form> onreset属性用法及代码示例
- HTML <textarea> form属性用法及代码示例
- HTML <select> form属性用法及代码示例
- HTML <form> autocomplete属性用法及代码示例
- HTML <output> form属性用法及代码示例
- HTML <meter> form属性用法及代码示例
- HTML <label> form属性用法及代码示例
- HTML <form> method属性用法及代码示例
- HTML <input> form属性用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <legend> form Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。