homerun
homerun

Reputation: 20775

frameset border color

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

Answers (2)

Ryan Kinal
Ryan Kinal

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)

Frames screenshot

Please carefully consider why you're using frames in the first place.

Upvotes: 2

slackmart
slackmart

Reputation: 4934

try with:
BORDERCOLOR=green

Upvotes: 1

Related Questions