15 lines
199 B
HTML
15 lines
199 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
fieldset {
|
|
min-width: 0;
|
|
width: 0;
|
|
}
|
|
legend {
|
|
width: 100px;
|
|
height: 20px;
|
|
background: white;
|
|
}
|
|
</style>
|
|
<fieldset>
|
|
<legend></legend>
|
|
</fieldset>
|