Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<style>
input, textarea {
appearance: none;
&:focus-visible {
outline: 1px solid blue;
}
}
</style>
<input value="foo"><textarea></textarea>
<script>
onload = () => {
document.querySelector("textarea").focus();
}
</script>