【发布时间】:2022-08-20 04:24:08
【问题描述】:
-
查看this
标签: css
标签: css
如果您将表单的内容包含在 <fieldset></fieldset> 标记中,框将出现在它们周围。
如果您添加<legend></legend> 标签,则会出现这些词。
图像的娱乐:
<!DOCTYPE html>
<html>
<body>
<form>
<fieldset style=width:fit-content;>
<legend>USER LOGIN</legend>
<label for=pdin>PDIN: </label>
<input style=float:right; type=text id=pdin name=pdin><br><br>
<label for=pass>Password: </label>
<input style=float:right; type=text id=pass name=pass><br><br>
<button>Login</button>
<button>Reset</button>
<button style=float:right;>New User</button>
</fieldset>
</form>
</body>
</html>
希望你觉得这有帮助:D
【讨论】: