blob: dbcfef7cfcaa57624bfd010463e81b5165898ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<style type="text/css">
input {
color: white;
background-color: green;
}
</style>
</head>
<body onload="document.getElementById('i').select();">
<input value="text" id="i">
</body>
</html>
|