HTML——filedset和legend标签

1.<filedset>定义围绕表单中元素的边框。

2.legend 元素表示作为 legend 元素的父元素的 fieldset 元素的其余内容的标题(caption)。

使用案例:

<form id="form" action="#" method="post">
<fieldset>
<legend>留言本</legend>
<label for="contactus">请您留言:</label>
<br/>
<textarea cols="80" rows="10" id="book" name="book">
</textarea>
</fieldset>
<input type="submit" value="提交" id="submit" name="submit" />
<input type="reset" value="重置" id="reset" name="reset"/>
</form>

 效果:

原文地址:https://www.cnblogs.com/carrier-sisi/p/7670279.html