Code:
<asp:Panel ID="Panel1" runat="server" CssClass="Borders">
<div class="BorderTitle">
Panel Title
</div>
<div class="FieldsWrapper">
<div class="FieldLeft FieldNameFont">
Field Name:
</div>
<div class="FieldRight">
<asp:TextBox ID="TextBox1" runat="server" Width="90%" TextMode="MultiLine" Rows="3" />
</div>
</div>
</asp:Panel>
Code:
.Borders
{
border: solid 2px #a5b5d1;
padding: 0em 0.0em 0.3em 0em;
margin: 0.3em 0em 1em 0em;
background-color: white;
}
.BorderTitle{
margin-top: 0px;
margin-bottom: 0.6em;
padding: .2em .3em .4em .3em;
font-weight: bold;
color: #000055;
background-color: #e3e9ef;
}
.FieldsWrapper
{
margin:0.2em 0.5em 0.3em 0.5em;
}
.FieldLeft
{
float: left;
width: 11em;
padding:0 0.5em 0 0.5em;
text-align: right;
clear: left;
white-space: nowrap;
}
.FieldRight
{
display: block;
padding: 0 0.5em 0 12.5em;
overflow: visible;
}
.FieldNameFont
{
font-family: Verdana, Arial, Tahoma;
font-size: 1em;
font-weight: bold;
color: #111111;
}
Bookmarks