hmmm can i do the same for asp controls ?, or is that via the CssClass property only?
evedently
Code:
<style>
fieldset#fsVendorInput label
{
text-align: right;
float: left;
display: block;
width: 150px;
margin: 5px 0 0;
padding: 0;
}
fieldset#fsVendorInput input, fieldset#fsVendorInput textarea
{
font-weight: normal;
width: 150px;
margin: 5px 0 0 10px;
}
fieldset#fsVendorInput select
{
margin: 5px 0 0 10px;
background-color: #fff;
width: 204px;
}
fieldset#fsVendorInput br
{
clear: left;
}
</style>
doesn't really style out
Code:
<fieldset id="fsVendorInput">
<asp:Label ID="Label2" runat="server" Text="Class:"></asp:Label>
<asp:DropDownList ID="ddlVendorClass" runat="server"></asp:DropDownList>
<br />
<asp:Label ID="Label3" runat="server" Text="Name:"></asp:Label>
<asp:TextBox ID="txtVendorName" runat="server"></asp:TextBox>
<br />
<asp:Label ID="Label4" runat="server" Text="Number:"></asp:Label>
<asp:TextBox ID="txtVendorNumber" runat="server"></asp:TextBox>
</fieldset>
i obviously need to use this kind of thing in a .net web applications. lol, tables seems soo much less effert and beter over the use of the non table solutions, but i'll goog around to see the what and how