I have an iframe which includes a video stream from a site and src attribute includes it's size:
<iframe src="http://xxxxxxx.com/accounts/xxxxxx/events/xxxxxx/player?width=320&height=180 frameborder="0" scrolling="no"> </iframe>
I would like to scale it up as the viewport gets bigger (say 320px width for mobile and 960px for desktop), but when I give it a size via CSS the content doesn't scale up to the whole iframe, since the size within the link is wrong.
Any ideas guys