iframe no scrollbar code example

Example 1: iframe no scroll

<iframe src="otherpage.html" scrolling="no" style="overflow:hidden;"></iframe>

Example 2: removing scroll bar of iframe

<iframe frameborder="0" scrolling="no" style="height:380px;width:6000px;border:none;" src='https://yoururl'></iframe>

Example 3: iframe no scroll

<iframe scrolling="no"></iframe>

Example 4: removing scroll bar of iframe

<iframe src="http://buythecity.com"  scrolling="no" style=" width: 550px; height: 500px;  overflow: hidden;" ></iframe>

Tags:

Misc Example