在html中,
html5新增属性
disabled:规定该组中的相关表单元素应该被禁用。
form:规定fieldset所属的一个或多个表单。
name:fieldset的名称。
格式:
<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中文网其他相关文章!