Centered Fieldset Legend
by artoodetoo
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;
}