First of all, using Angular 4, bootstrap 3, html 5.
Right now, I have an iframe <iframe src="http://test.test"></iframe>
with the style
body {
margin: 0;
}
iframe {
display: block;
border: none;
height: 100vh;
width: 100%;
}
When the html pops, the height is correct (and I have no scrollbar), but when the content of the iframe page changes, a scroll bar appears. My objective is to not have the scrollbar in the iframe, NEVER.
EDIT1: Already tried overflow: hidden;
, does not work.
EDIT2: I do not want content to spill onto the parent page.