Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

overflow: hidden work in IE but not in FF

Status
Not open for further replies.

webscriptprogrammer

Programmer
Joined
Nov 26, 2005
Messages
31
Location
SE
I have a div and inside that div I have a flashplayer

At start I like to hide most of the flash except a 100x100px at the left up corner.

when I push a button inside the flash the div get bigger and another button show.

when I push that it shrink to 100x100px again.

I use overflow: hidden to hide that I dont want to show and that work great in IE but in FF it still show hole flash player?

Code:
#myflash {
	position:absolute;
	width:100px; 
	height:100px; 
	z-index:100;
	border: 2px solid black; 
	overflow:hidden;
	left: 167px; 
	top: 44px; 	
}
 
Try putting the overflow and size constraints on the Flash movie itself, rather than the container.

I agree you shouldn't have to... but give it a bash anyway.

Dan

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top