Tags Order A-Z Category Context

<sn:iframe>

Loads the specified URL in an iframe.

Attributes

  • string < required > The url to load inside of this iframe. Like a form, the iframe will have several additional parameters appended to it. Can be any url .
  • string < optional > Whether or not the iframe will scroll. Must be one of : yes no auto Default is true.
  • integer < optional > The width in pixels of the iframe's border. Must be an int . Default is 1.
  • string < optional > Inline CSS style for this iframe Can be any string .
  • string < optional > The width of the iframe in pixels Must be a size as recognized by a browser (50, 50px, 50em, 50%) .
  • string < optional > The height of the iframe in pixels Must be a size as recognized by a browser (50, 50px, 50em, 50%) .

Valid Contexts

  • : The area where your app is displayed alone

Code

<sn:iframe frameborder="0" src="http://www.bebo.com" scrolling="no">
</sn:iframe>
Play with this code in the sandbox