web-dev-qa-db-fra.com

Attribuer un titre à la frontière en div

Puis-je faire ça en HTML:

enter image description here

Je veux ajouter un titre de bordure ("Informations générales" dans cette image) sur mon div. C'est possible? Comment faire?


Remarque:
L'image n'est pas l'image de la page HTML, c'est une image de l'application Java app.

45
Harry Joy
<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>
53
user554180

L'image utilise peut-être une balise fieldset au lieu d'une div, à l'intérieur d'une fieldset vous pouvez utiliser la balise legend et elle se positionnera automatiquement à cet endroit.

<fieldset>
<legend>General Information</legend>
</fieldset>
16
amosrivera
<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>

Cela vous donnera une sortie comme celle-ci.

enter image description here

2
Rudrik

Bordure ronde avec couleur d'arrière-plan.

<!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>

Cela donnera une sortie comme celle-ci,

enter image description here

1
Kannan Arumugam