CSS display not working

I'm really upset because Display:none does not work on the <tr> element in IE 7, what should I do? It works great on FF, Chrome, etc.

+1
css internet-explorer
source share
3 answers

try it

 div{ display:none; } 

If not, jQuery should solve this problem.

 $(document).ready(function(){ $("div").hide(); }); 
+1
source share

Start by validating the code using the following tools:

+6
source share

Display:none should be Display:none , on the one hand.

+1
source share

All Articles