mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
14 lines
248 B
HTML
14 lines
248 B
HTML
<!DOCTYPE html>
|
|
<!--fieldset with only invalid elements -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
fieldset:invalid { display: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fieldset id="fieldset">
|
|
<input required>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|