Using the CSS language only the position and exterior of the Iframe element can be stylized.
The internal content of the Iframe element can not be styled with CSS, this is possible using the JAVASCRIPT language.
<iframe class="frame" src="https://itpresent.com" scrolling="no"></iframe>
In the CSS language, it is possible to specify the position of the Iframe element itself. It is also possible to set the position of the specific HTML content of the document being displayed
<div id="outerdiv">
<iframe id="frame" src="https://itpresent.com" scrolling="no"></iframe>
</div>