tags:

views:

58

answers:

1

It's what I see in page.tpl.php of Drupal,but I don't understand.

<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
+3  A: 

Here you go: Flash of Unstyled Content or FOUC

It actually does not refer to Adobe Flash, it's referring to rendering of html before applying css to it. This is a hack to prevent IE from rendering html before applying css to it.

tarasm