Before the comments start screaming "frames are evil", let me add a disclaimer: "I am just porting a legacy application and don't have the time to get rid of frames!" :-)
There's a frameset containing two frames. I don't like the default frame border rendered by the browser (especially on Chrome & Firefox). It's too thick and feels obtrusive! So I thought i'll hide the default frame border using frameborder=0 attribute on the frame and add the desired style on the content inside the frames. The problem is: after adding frameborder=0, the frames are not resizable anymore on Chrome & Safari, whereas IE & Firefox can still resize them. This is my code:
<frameset rows="80%,20%" >
<frame id="frame1" scrolling="auto" frameborder="0" />
<frame id="frame2" scrolling="auto" frameborder="0" />
</frameset>
Is there anyway to override the default frame border rendering and still retain the resizability?