Set overflow to hidden on iframe - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Overflow

Description

Set overflow to hidden on iframe

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from w  w  w.  j  av  a 2s .  co  m-->
 <body> 
  <iframe scrolling="no" src="http://www.google.com" width="400px" height="300"></iframe>  
 </body>
</html>

Related Tutorials