在html中,978aba46f1f86b43004f866ee64b6794標籤是用來將表單內的相關元素分組,相關表單元素周圍將會被設定邊框;2b5469ab79cf842344327415c3b3bb95 元素的標題一般由e911751791aa3ba95dc724e2fb905976標籤定義;2b5469ab79cf842344327415c3b3bb95標籤被所有主流瀏覽器支援。
html5新增屬性
disabled:規定該群組中的相關表單元素應該被停用。
form:規定fieldset所屬的一個或多個表單。
name:fieldset的名稱。
2b5469ab79cf842344327415c3b3bb95標籤支援html全域屬性和html事件屬性
#格式:
<form> <fieldset> <legend>标题</legend> 表单元素 </fieldset> </form>
實例
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="Content-Type" content="text/hmtl; charset=utf-8" ><!--PHP中午乱码处理--> <title>html < fieldset>标签_PHP笔记</title> </head> <body> <form> <fieldset> <legend>登陆</legend> 用户名: <input type="text"><br> 密码: <input type="password"><br> Email: <input type="text"> </fieldset> </form> </body> </html>
以上是html fieldset標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!