2

我想在我的表单周围创建边框,还想在我的表单周围创建的顶部边框线上放置一些 HTML 组件。检查我创建的示例表单和在顶部边界线上重叠的单选按钮。您能否指导我如何实现类似类型的输出。

--- O 家 O 办公室 ---------------------------------
|                            _ __ _ __ _ __ _ __ _ __ _            |
| 地址: | | |
| | | |
| | | |
| | _ __ _ __ _ __ _ __ _ ___| |
|                           
__ _ __ _ __ _ __ _ __ _ _             |
| 电话号码: | _ __ _ __ _ __ _ __ _ ____ | |
| |
|------------------------------------------------- --------

4

3 回答 3

1

你可以使用一个<fieldset><legend>

<form>
  <fieldset>
    <legend><input type="radio" name="location"> home  <input type="radio" name="location"> office</legend>
    form elements
 </fieldset>
<form>

演示

于 2012-12-15T08:17:50.393 回答
1
   <form>
     <fieldset>
      <legend><input type=radio> home  <input type=radio> office</legend>

    Address: <input type="text"><br>

    Phone No: <input type="tel" ><br>

     </fieldset>
    </form>
于 2012-12-15T08:21:23.943 回答
0

html中的使用Fieldset和标签legend

于 2012-12-15T08:16:18.720 回答