HTML
HTML <fieldset> 元素
实例 1:具有 fieldset,legend 和 label 的表单
源代码:
点击运行 »
<form action="test.php" method="post"> <fieldset> <legend>标题</legend> <input type="radio" id="radio"> <label for="radio">点我!</label> </fieldset> </form>
运行结果:
点击运行 »