When I am doing frames on a page, do I put the link to the external style sheet on the main page. or do I put it inside the frames file?
2 answers
points
Each frame page is an individual page, so each page will need it's own style sheet link.
You can put a style sheet link in the main page, but the style can only affect how the frameset is displayed (borders and margin between frames), it won't be inherited by the frame pages.
- Indeed. +1
point
Hello, you should put your link inside the frames file. See below:
<frameset cols="25%,75%">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
</frameset>
For more information on frames you can Click Here
