blob: edfb89a426fbd987035a7df151a64aeac6e6212a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<style>
input {
position: absolute;
top: 100px;
left: 300px;
}
input:focus {
background-color: green;
}
</style>
<input type="text" id="input" size="10"/>
|