I am using the below CSS to display the error message in label control.
.errormessage
{
border-width:1px;
border-style:solid;
background-color:#fffccc;
border-color:green;
color:Green;
padding:10px;
line-height:3em;
}

Bydefault the visibilty is false and it should visible only onclick of [save] button.
Its works fine in IE6 but in IE8 the label borders are visible in pageload itself.
Can anyone guide me the modification that needs to be done in CSS.