回答編集履歴
1
修正
answer
CHANGED
@@ -6,4 +6,34 @@
|
|
6
6
|
padding: 10px;
|
7
7
|
line-height: 1;
|
8
8
|
}
|
9
|
+
```
|
10
|
+
---
|
11
|
+
↓追加しました。普段使い回しているソースをそのまま持ってきたので、古いかもしれませんが試してみてほしいです。
|
12
|
+
```CSS
|
13
|
+
select,
|
14
|
+
option,
|
15
|
+
textarea,
|
16
|
+
input[type="text"],
|
17
|
+
input[type="tel"],
|
18
|
+
input[type="email"],
|
19
|
+
input[type="url"],
|
20
|
+
input[type="number"],
|
21
|
+
input[type="password"],
|
22
|
+
input[type="search"],
|
23
|
+
input[type="file"],
|
24
|
+
input[type="date"],
|
25
|
+
input[type="submit"],
|
26
|
+
input[type="button"],
|
27
|
+
input[type="reset"],
|
28
|
+
button {
|
29
|
+
-webkit-appearance: none;
|
30
|
+
-moz-appearance: none;
|
31
|
+
-ms-appearance: none;
|
32
|
+
appearance: none;
|
33
|
+
}
|
34
|
+
input::-moz-focus-inner,
|
35
|
+
button::-moz-focus-inner {
|
36
|
+
border: 0;
|
37
|
+
padding: 0;
|
38
|
+
}
|
9
39
|
```
|