JSFiddle - React, Tailwind, and code Playground
HTML
<div id="frame-wrapper">
<iframe src="http://www.w3schools.com" id="my-iframe" scrolling="no"></iframe>
</div>
CSS
#frame-wrapper
{
width : 400px;
height : 220px;
overflow : hidden;
position : relative;
}
#my-iframe
{
position : absolute;
top : 100px;
left : 0px;
width : 400px;
height : 220px;
}