实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html legend align 实例 - 自学教程(runoops.com)</title> </head> <body> <form> <fieldset> <legend>Personalia:</legend> Name: <input type="text" size="30"><br> Email: <input type="text" size="30"><br> Date of birth: <input type="text" size="10"> </fieldset> </form> <form> <fieldset> <legend align="right">Personalia:</legend> Name: <input type="text" size="30"><br> Email: <input type="text" size="30"><br> Date of birth: <input type="text" size="10"> </fieldset> </form> <p>在 HTML 4中 align 属性已废弃,HTML5 已不支持该属性.</p> </body> </html>
运行结果: