Paul S.
Paul S.

Reputation: 4502

HTML frame / iframe

I see that HTML has both a frame tag and an iframe tag. How are they different, and when should one be preferred over the other?

Upvotes: 0

Views: 680

Answers (1)

Quentin
Quentin

Reputation: 944474

How are they different?

A frame appears inside a frameset. An iframe appears inside an HTML document that has a <body>.

and when should one be preferred over the other?

They do significantly different things.

Both can break linking/bookmarking (so should be used rarely), but the use cases for regular frames make it more likely that will happen with them than with iframes.

Upvotes: 1

Related Questions