I'm trying to embed an external website into a page of mine with <iframe src="http://...>, I'm setting the width with a simple CSS rule, but I want to set the height equal to the height of the website shown in the iframe, how can I do it?
The website shown is an e-shop, the iframe shows a page with some products, I want that the iframe height grows when the page grows. If the page shown height is 2000px, the iframe height will be 2000px, if the screen width is smaller and the page shown height becomes 3400px, the iframe height will become 3400px, etc...
There is a way to do this?