mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
19 lines
341 B
HTML
19 lines
341 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
input {
|
||
|
|
width: 10px;
|
||
|
|
height: 1.5em;
|
||
|
|
outline: 1px dotted black;
|
||
|
|
background: white;
|
||
|
|
/* Disable baseline alignment, so that our y-position isn't influenced by the
|
||
|
|
* choice of font inside of input: */
|
||
|
|
vertical-align: top;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<input>
|
||
|
|
</body>
|
||
|
|
</html>
|