We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9512135 commit 38948e0Copy full SHA for 38948e0
1 file changed
demos/ux-css-text-transform/index.htm
@@ -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
18
+ text-transform: uppercase ;
19
20
21
+ </style>
22
+</head>
23
+<body>
24
25
+ <h1>
26
27
+ </h1>
28
29
+ <form>
30
+ <label>Name:</label>
31
+ <input type="text" />
32
+ </form>
33
34
+</body>
35
+</html>
0 commit comments