mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
10 lines
160 B
HTML
10 lines
160 B
HTML
<style>
|
|
button {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
<button id="1">Submit</button>
|
|
<script>
|
|
var elem = document.getElementById('1');
|
|
elem.focus();
|
|
</script>
|