Skip to content

Commit 38948e0

Browse files
committed
Add demo page of text-transform on form input.
1 parent 9512135 commit 38948e0

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
6+
<title>
7+
The User Experience (UX) Of CSS Text-Transform On Form Input Fields
8+
</title>
9+
10+
<style type="text/css">
11+
12+
form,
13+
input {
14+
font-size: 20px ;
15+
}
16+
17+
input {
18+
text-transform: uppercase ;
19+
}
20+
21+
</style>
22+
</head>
23+
<body>
24+
25+
<h1>
26+
The User Experience (UX) Of CSS Text-Transform On Form Input Fields
27+
</h1>
28+
29+
<form>
30+
<label>Name:</label>
31+
<input type="text" />
32+
</form>
33+
34+
</body>
35+
</html>

0 commit comments

Comments
 (0)