max-width: ***; min-width: ***;
Browser |
|
---|
The max-width property specifies the maximum width of an element, and the min-width property specifies the minimum width of an element.
The maximum width and minimum width of the iframe can be specified by applying these properties to the IFRAME element.
iframe {
max-width: 500px;
min-width: 400px;
}
Property | Value | Explanation |
---|---|---|
max-width | length, %, or none | the size of the maximum width (the default is none) |
min-width | length or % | the size of the minimum width |