Reputation: 20775
i have this code which include frameset. i have tried to set to this frame set border color.
here it is:
<html>
<frameset rows="* , *" border="1" BORDERCOLOR="#ffffff">
<frame src="http://site.com" noresize="true"/>
<frame src="http://site.com" noresize="true"/>
</frameset><frameset rows="* , *" border="1" BORDERCOLOR="#00ff00">
</html>
I have set BORDERCOLOR but that attribute does not have any effect.
how can i set border color between the frames?
Upvotes: 1
Views: 25315
Reputation: 17732
<html>
<frameset rows="* , *" border="1" BORDERCOLOR="#ff0000">
<frame src="http://site.com" noresize="true"/>
<frame src="http://site.com" noresize="true"/>
</frameset>
</html>
That works for me (see screenshot below)
Please carefully consider why you're using frames in the first place.
Upvotes: 2