Weird CSS + Browser Problem

Here is my code : <h:dataTable id ="brandTable"

var="brand" value="#{statisticsController.breakdownForBrand}"

width="500"

headerClass="headers"

columnClasses="statsColMain"

rowClasses="rows"

style="display:none;">

<h:column>

<f:facet name ="header">

<h:outputText value="Brand" />

</f:facet>

<h:outputText value ="#{brand.attributeValue}" />

</h:column>

<h:column>

<f:facet name ="header">

<h:outputText value="All Searches" />

</f:facet>

<h:outputText value ="#{brand.allSearches}" />

</h:column>

<h:column>

<f:facet name ="header">

<h:outputText value="Unique Searches" />

</f:facet>

<h:outputText value ="#{brand.uniqueSearches}" />

</h:column>

</h:dataTable>

Here is the css:

.headers{

text-align: center;

font-style: italic;

background: #90BAE2;

white-space: no-wrap;

}

.rows{

white-space: no-wrap;

text-align: center;

}

.statsColMain{

width: 100px;

text-align: center;

}

My problem is whenever I use IE my data table is not using any css, but when I used Firefox everything is OK. Take note that it is only in the data table that I'm having problems (using IE) with regard to css, other parts of the screen are working ok vis a vis with css even when using IE. What seems to be the problem?

[2008 byte] By [pauster007a] at [2007-11-27 6:02:07]
# 1
close the browser and then open it again, problem solved! dang!
pauster007a at 2007-7-12 16:43:05 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Everytime when you change the CSS, and if the browser caching is enabled, then do a hard reload to get the changes reflected. A hard reload in IE, FF and Opera can be done with CTRL+F5.
BalusCa at 2007-7-12 16:43:05 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...