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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem resizing a frame between IE and Mozilla F 1

Status
Not open for further replies.

mcowen

Programmer
Joined
Oct 21, 2001
Messages
134
Location
GB
Given:
Code:
<frameset id="test" rows="300,300" framespacing="1" frameborder="NO" border="0" >	
  <frame id="topFrame" name="TopFrame" scrolling="AUTO" src="page1.htm"/>
  <frame id="mainFrame" name="MainFrame" scrolling="AUTO" src="page2.htm" />
</frameset>

In IE the frames can be resized with the mouse but in Firefox it is static even if noresize is not added as an attribute. How do I write the frameset so I can also resize the page in firefox?

Matt
"<italic>Success is 10% inspiration, 90% last minute changes</italic>
 
Although frameborder has always worked before at the frameset level, according to w3c validation it is actually an attribute of each frame.

Code:
<frameset id="test" rows="300px,300px">    
<frame id="topFrame" name="TopFrame" scrolling="AUTO" src="p1.htm"
 frameborder="1px" />
<frame id="mainFrame" name="MainFrame" scrolling="AUTO" src="p2.htm"
 frameborder="1px" />
</frameset>

Clive
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top