<html>
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
.TextBox1
{
font-family: sans-serif;
font-size: 9px;
font-style:normal;
height:18px;
background-color:Green;
}
.TextBox2
{
font-family: Verdana;
font-size: 9px;
font-style:normal;
height:48px;
background-color:Olive;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" CssClass="TextBox1"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" CssClass="TextBox2"></asp:TextBox>
</div>
</form>
</body>
</html>