mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 12:23:08 +09:00
18 lines
327 B
HTML
18 lines
327 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
label {color: green}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<input id="one" disabled="disabled"/>
|
|
<label for="one">Should be no red</label>
|
|
</div>
|
|
<div>
|
|
<input id="two"/>
|
|
<label for="two">Should be no red</label>
|
|
</div>
|
|
</body>
|
|
</html>
|