max-height: ***; min-height: ***;
Browser |
|
---|
The max-height property specifies the maximum height of an element, and the min-height property specifies the minimum height of an element.
The maximum height and minimum height of the iframe can be specified by applying these properties to the IFRAME element.
iframe {
max-height: 350px;
min-height: 250px;
}
Property | Value | Explanation |
---|---|---|
max-height | length, %, or none | the size of the maximum height (the default is none) |
min-height | length or % | the size of the minimum height (the default is 0) |
Example
<html>
<head>
<title>TAG index</title>
<style type="text/css">
iframe {
width: 300px;
height: 100%;
max-height: 500px;
min-height: 300px;
}
</style>
</head>
<body>
<p>
<iframe src="example.html">Alternate content</iframe>
minimum height:300px - maximum height:500px
</p>
</body>
</html>
- Output
-
Example page