blob: 108df6d8ca7654b48aa41e28d4eff6e902074e1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<style>
fieldset {
min-width: 0;
width: 0;
}
legend {
width: 100px;
height: 20px;
background: white;
}
</style>
<fieldset>
<legend></legend>
</fieldset>
|