Coding Gal
Coding Gal

Reputation: 145

How do I shrink the content of this iFrame?

I need to have a webpage where 6 cams are displayed on one webpage. I can do this with iframes, but the content of the iframes are still fullscreen. How can I shrink them to fit the iFrame window?

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Spycam</title>
</head>

<body>
<iframe src="(ip adress here)"
width="640px" height="480px">

</iframe>
</body>
</html>

Upvotes: 0

Views: 320

Answers (1)

Bryant
Bryant

Reputation: 454

You're not going to be able to control the contents of the iframe, only the iframe itself. If the contents of the iframes are content that you control (i.e. can edit the HTML/CSS), then you can change the videos on the pages themselves.

Upvotes: 1

Related Questions