mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
445 B
HTML
27 lines
445 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Minimum height on fieldset</title>
|
|
<style>
|
|
div {
|
|
writing-mode: vertical-lr;
|
|
}
|
|
fieldset {
|
|
background:rgba(0,0,0,0.1);
|
|
border-color:teal;
|
|
border-width:2px;
|
|
min-height:200px;
|
|
max-height:400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<fieldset>
|
|
<p>Lorem ipsum.</p>
|
|
</fieldset>
|
|
</div>
|
|
</body>
|
|
</html>
|