i'm new to css and i'm trying to figure out a way to incorporate a legend tag as an header for my page
currently my master page is styled by a field set :
fieldset.field_set_main
{
border-bottom-width:50px;
border-top-width:100px;
border-left-width:30px;
border-right-width:30px;
margin:auto;
width:1300px;
height:700px;
padding:0px 0px 0px 0px;
border-color:Black;
border-style:outset;
display:table;
}
legend.header
{
text-align:right;
}
<fieldset class="field_set_main" >
<legend class="header">
buy for you
</legend>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</fieldset>
The legend caption appears with its own background color "white" , if i set it to black only the caption text itself "buy for you" get's black , it appears as a white box in the right of my border, Ii'm looking for a css style for the legend to appear as an header for the page ( with the same background color as the fieldset's background color , a different forecolor for the text ).
Is there a footer element in the fieldset , i want a caption to appear at the bottom of the page as well.
- Any good sources for useful css styles ? especially for master pages styled with a main fieldset ?