mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
f09d25e85c
no source code changed, not part of build, so no reviewer
28 lines
730 B
HTML
28 lines
730 B
HTML
<!--<hr align=left width=200>-->
|
|
|
|
<div style="border: 1px solid blue; min-width: 200px;">
|
|
Div 1: min-width:200px
|
|
</div>
|
|
<br>
|
|
<div style="border: 1px solid blue; width: 200px;">
|
|
Div 2: width:200px width:200px width:200px width:200px
|
|
max-width:200px
|
|
</div>
|
|
<br>
|
|
<div style="border: 1px solid blue; max-width: 200px;">
|
|
Div 3: max-width:200px max-width:200px max-width:200px max-width:200px
|
|
max-width:200px
|
|
</div>
|
|
<br>
|
|
<div style="border: 1px solid blue; min-width: 100px; max-width: 200px;">Div 4: </div>
|
|
<br>
|
|
|
|
<form>
|
|
<input type=text style="min-width:200px;"><br>
|
|
<input type=text style="min-width:200px; width:100%">
|
|
<input type=text style="max-width:200px; width:100%">
|
|
<input type=text style="width:200px;">
|
|
</form>
|
|
|
|
|