0

In a classical form, we have the legend tag on the same line of the top border like showed below.

enter image description here

The code is:

...
<fieldset>
    <legend>Connexion</legend>
    ...
</fieldset>

Is it possible to move this legend lower in the formular like showed below?

enter image description here

Any idea what is the CSS ?

Thanks.


UPDATE

Below is the result after applying the following CSS:

fieldset { 
    position:relative;   
}    

legend { 
    top:20px; 
    position:absolute; 
    font-size:20px; 
    font-weight:bold    
} 

enter image description here

How to add more space after the legend 'Connexion' ?

Bronzato
  • 9,438
  • 29
  • 120
  • 212

1 Answers1

5

You sure can do this with CSS. Without using absolute positioning you end up with a big gap in the fieldset border.

fieldset {
    position:relative;  
}   

legend {
    top:50px;
    position:absolute;
    font-size:20px;
    font-weight:bold   
} 
Diodeus - James MacFarlane
  • 112,730
  • 33
  • 157
  • 176