Disable frame resizing in Firefox

I have the following set of frames:

<frameset rows="625,*" cols="*" framespacing="0" frameborder="0" border="0" noresize> <frame marginheight="0px" src="music-NEW.php" name="mainFrame" scrolling="NO" frameborder="0" noresize> <frame marginheight="0px" src="musicplayer.php" name="bottomFrame" scrolling="NO" frameborder="0" noresize> </frameset>

in IE, a set of frames makes, as we would like, the appearance of one seamless page. in Firefox, a set of frames is displayed with a capturing panel between frames and allows you to capture the panel and resize the frame, which I can’t get rid of.

Also, why don't frames line up directly in Firefox and Safari?

+3
source share
4 answers

Add noresize = "noresize" to your frame:

<frame  noresize="noresize">
+2
source

Do you really want the user to not be able to resize your frames?

Why?

, ? , / ?

-, -. / . , / (Firebug, .).

.

+2

, marginwidth marginheight 0px. ?

marginwidth = pixels [CN]

, . (). .

marginheight = pixels [CN]

This attribute defines the amount of space left between the contents of the frame in its upper and lower fields. The value must be greater than zero (pixels). The default value depends on the user agent.

0
source

An old question now, but it might be wise to use an IFRAME in such situations.

0
source

All Articles