views:

154

answers:

2

I have flash object embedded to my page and it should act as background animation. I have trouble setting height of object element, because firefox doesn't understand height="100%" value.

<object classid="my_class_id" width="100%" height="100%" id="my_id">

<blaa blaa />

</object>
A: 

I believe

html, body {
  height: 100%;
}

Should do it...

Aran
A: 

Have a look at the markup source of the example.

Fullscreen Flash as BG Example

Bdiem
This is same thing nikc posted and it works. Thanx for help for all people helping me...
newbie