11 lines
259 B
HTML
11 lines
259 B
HTML
<!doctype html>
|
|
<textarea>FOO BAR</textarea><br>
|
|
<input value="FOO BAR">
|
|
<script>
|
|
onload = function() {
|
|
for (let e of document.querySelectorAll("input, textarea")) {
|
|
e.getBoundingClientRect().top;
|
|
e.style.background = "transparent";
|
|
}
|
|
}
|
|
</script>
|