-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaceholder.html
More file actions
54 lines (52 loc) · 813 Bytes
/
placeholder.html
File metadata and controls
54 lines (52 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Change Placeholder Color</title>
</head>
<style>
input[type="text"]::placeholder{
color:blue;
font-size:25px;
height:28px;
}
input[type="email"]::placeholder{
color:red;
font-size:25px;
height:28px;
}
input{
height:40px;
width:350px;
}
label{
font-size:30px;
font-weight: bold;
}
#_1{
position:absolute;
top:50px;
left:200px;
}
#_2{
position:absolute;
top:95px;
left:200px;
}
#_3{
position:absolute;
top:150px;
left:200px;
}
#_4{
position:absolute;
top:195px;
left:200px;
}
</style>
<body>
<label id="_1">Text field:</br></label>
<input id="_2" type="text" placeholder="CSS ::placeholder Text"> </br>
<label id="_3" >Email Field:</br></label>
<input id="_4" type="email" placeholder="CSS ::placeholder Email"
</body>
</html>