Set size for iframe in HTML and CSS

Description

The following code shows how to set size for iframe.

Example


<!DOCTYPE HTML>
<html>
<head>
<title>Example</title>
</head><!--   ww  w  .  j  av  a 2 s  . com-->
<body>
<iframe src="http://google.com" width="300" height="100">
</iframe>
</body>
</html>

Click to view the demo

The code above generates the following result.

Set size for iframe in HTML and CSS