blob: 76fa4d971d5e646c5200de2216e3c6447ef75be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<style>
input {
background-color: blue;
border: 1px red solid;
width: 400px;
color: white;
padding: 2px;
margin: 5px;
}
</style>
<body>
<input type='file'>
</body>
</html>
|