fieldset标签的使用

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>fieldset标签的使用</title>
<style type="text/css">

</style>
</head>

<body>
<fieldset>
<legend><strong>注册用户信息</strong></legend>
    <form><p>
    用户名<input name="" type="text"  placeholder="用户名称"></p>
<br />
        用户密码<input name="" type="password" placeholder="用户密码"><p><br />
        用户密码<input name="" type="password"  placeholder="用户密码"></p><br /><p>
<input name="" type="button" value="提交"> <br /></p>
    </form>
</fieldset>
</body>
</html>

你可能感兴趣的:(fieldset,legend)