reposition legend tag
Quick notes for future reference:
Repositioning the legend tag in html requires the use of position:absolute (or maybe position:static). And you need to put another tag inside of the legend tag; something like this:
<legend><em>login</em></legend>
then you can affect the position by using this CSS:
legend em {position:absolute;margin-left:10px;margin-top:10px;}
If you try repositioning the tag using only margins or floats, the contents of the fieldset are moved as well. So, just add position:absolute and it will break out of its position.
Repositioning the legend tag in html requires the use of position:absolute (or maybe position:static). And you need to put another tag inside of the legend tag; something like this:
<legend><em>login</em></legend>
then you can affect the position by using this CSS:
legend em {position:absolute;margin-left:10px;margin-top:10px;}
If you try repositioning the tag using only margins or floats, the contents of the fieldset are moved as well. So, just add position:absolute and it will break out of its position.
