NSanjay
NSanjay

Reputation: 211

HTML Align LEGEND Center

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

Answers (2)

mingos
mingos

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/

HTML

<fieldset>
    <legend>LOGIN</legend>
    <input type="submit" value="OK" name="submit" />
</fieldset>

CSS

fieldset { border: 1px solid grey; padding: 10px; }
legend {
    background: yellow;
    width: 100%;
    text-align: center;
}

Upvotes: 5

gndps
gndps

Reputation: 851

.simpleSolutionInCss{
    text-align: center;
    margin: auto;
}

Upvotes: 4

Related Questions