在div中给出边框标题

时间:2011-03-07 05:03:56

标签: html css forms

我可以在HTML中执行此操作:

enter image description here

我想在div上添加边框标题(此图片中的“常规信息”)。可能吗?怎么做?


注意:
图像不是HTML页面的图像,而是Java应用程序的图像。

4 个答案:

答案 0 :(得分:53)

<div id="form" style="width:350px;">
   <fieldset>
      <legend style="color:blue;font-weight:bold;">General Information</legend>
      <table>
         <tr>
            <td><span style="text-decoration:underline">C</span>hange Password To:</td>
            <td><input type="text"/></td>
         </tr>
         <tr>
            <td><span style="text-decoration:underline">C</span>onfirm Password:</td>
            <td><input type="text"/></td>
         </tr>
      </table>
   </fieldset>
</div>

答案 1 :(得分:16)

图片可能使用fieldset标记而不是div,在fieldset内,您可以使用标记legend,它会自动定位在那里。

<fieldset>
<legend>General Information</legend>
</fieldset>

答案 2 :(得分:2)

<fieldset style="width:100px;">

<legend>

Please Enter Your Name</legend>

<br>

<table>

<tr>

<td>First Name:</td>

<td><input type="text" /></td>

</tr>

<tr>

<td>Last Name:</td>

<td><input type="text" /></td>

</tr>

</table>

</fieldset>

这将是这样的输出。

enter image description here

答案 3 :(得分:1)

带背景色的圆形边框。

<!DOCTYPE html>
<html>
<head>
<style> 
.sample
{
border:2px solid #a1a1a1;
padding:10px 40px; 
background:#dddddd;
width:300px;
border-radius:25px;
}
</style>
</head>
<body>

<div class="sample">
The border-radius property allows you to add rounded corners to elements.

<fieldset style="width:100px;">

<legend>

Please Enter Your Name</legend>

<br>

<table>

<tr>

<td>First Name:</td>

<td><input type="text" /></td>

</tr>

<tr>

<td>Last Name:</td>

<td><input type="text" /></td>

</tr>

<tr>

<td>First Name:</td>

<td><input type="text" /></td>

</tr>

<tr>

<td>Last Name:</td>

<td><input type="text" /></td>

</tr>

</table>

<input type="submit" value="Submit">


</fieldset>

</div>
</body>
</html>

这将给出这样的输出,

enter image description here