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

What happened to frame RESIZE?

Status
Not open for further replies.

mike314

Programmer
Jun 24, 2003
143
US
Quick question guys how can I set the RESIZE on my frame so that users can not move the frame borders? Heres what I got but I still can move the border:

<HTML>
<TITLE>frame</TITLE>
<FRAMESET COLS= &quot;20%, 80%&quot; RESIZE =&quot;no&quot;>
<FRAME SRC= &quot;two.html&quot; SCROLLING = &quot;no&quot;>
<FRAME SRC= &quot;three.html&quot;>
</FRAMESET>
</HTML>

thanks
 
Code:
<HTML>
<TITLE>frame</TITLE>
<FRAMESET COLS= &quot;20%, 80%&quot;>
<FRAME SRC= &quot;two.html&quot; SCROLLING = &quot;no&quot; noresize>
<FRAME SRC= &quot;three.html&quot;>
</FRAMESET>
</HTML>
[code]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top