JSFiddle - React, Tailwind, and code Playground

HTML

<iframe src="http://cnn.com"></iframe>
<iframe src="http://cnn.com"></iframe>
<iframe src="http://cnn.com"></iframe>
<iframe src="http://cnn.com" style="overflow:hidden" scrolling="no"></iframe>

CSS

iframe {position: relative; margin: 100px 0 0 0;}

JavaScript

$("iframe").eq(0).css("overflow", "hidden").attr("scrolling", "no");
$("iframe").eq(1).on('load', function() {
    $(this).css("overflow", "hidden").attr("scrolling", "no");
});