1124636-2-fieldset-min-height.html (445B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Minimum height on fieldset</title> 6 <style> 7 div { 8 writing-mode: vertical-lr; 9 } 10 fieldset { 11 background:rgba(0,0,0,0.1); 12 border-color:teal; 13 border-width:2px; 14 min-height:200px; 15 max-height:400px; 16 } 17 </style> 18 </head> 19 <body> 20 <div> 21 <fieldset> 22 <p>Lorem ipsum.</p> 23 </fieldset> 24 </div> 25 </body> 26 </html>