Reputation: 211
How do I adjust the legend width ? so I can center it on screen.
<fieldset>
<legend align="center">LOGIN</legend>
</fieldset>
Upvotes: 0
Views: 7915
Reputation: 24522
The legend element properties can be modified via CSS just like any other element. Here's an example of a legend with 100% width, centred text and yellow background: http://jsfiddle.net/Y7DnS/1/
<fieldset>
<legend>LOGIN</legend>
<input type="submit" value="OK" name="submit" />
</fieldset>
fieldset { border: 1px solid grey; padding: 10px; }
legend {
background: yellow;
width: 100%;
text-align: center;
}
Upvotes: 5