If i have a form
in body with specific style and i want to exclude this form
from this style(the body style) .
<body>
<form id="form1" runat="server">
<div class="demo-containers">
<div class="demo-container" id="decorationZone">
<h4>Student Schedule</h4>
<fieldset>
<legend>Registeration Number</legend>
<label for="<%= UsernameBox.ClientID %>" runat="server">RegNum: </label>
<asp:TextBox runat="server" ID="UsernameBox" Width="150px" TabIndex="7"></asp:TextBox>
</fieldset>
</div>
</div>
</form>
......
</body>
The problem is : the body has a css
and i want this style not applied on my form ,