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 Chris Miller 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
Nov 26, 2005
31
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; 	
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top