Suppose I have very simple markup. I want iframe to take 100% of screen height but setting 100vh
still adding scrollbar.
* {
box-sizing: border-box;
}
body {
margin: 0;
}
iframe {
width: 100%;
height: 100vh;
}
<iframe scr="https://en.wikipedia.org/wiki/Main_Page"></iframe>
But I see vertical scrollbar. Why is it showing and how to get rid of it?