質問編集履歴
1
依頼にのっとって編集してみました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,10 +6,70 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
どこが悪いのでしょうか。
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
```CSS
|
14
14
|
|
15
|
+
.btn-push,.btn-push2 {
|
16
|
+
|
17
|
+
display: inline-block;
|
18
|
+
|
19
|
+
max-width: 180px;
|
20
|
+
|
21
|
+
text-align: left;
|
22
|
+
|
23
|
+
font-size: 16px;
|
24
|
+
|
25
|
+
color: #FFF;
|
26
|
+
|
27
|
+
text-decoration: none;
|
28
|
+
|
29
|
+
font-weight: bold;
|
30
|
+
|
31
|
+
padding: 10px 24px;
|
32
|
+
|
33
|
+
border-radius: 4px;
|
34
|
+
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
.btn-push {
|
40
|
+
|
41
|
+
background-color: #EE2737;
|
42
|
+
|
43
|
+
border-bottom: 6px solid #880000;
|
44
|
+
|
45
|
+
}
|
46
|
+
|
47
|
+
.btn-push2 {
|
48
|
+
|
15
|
-
|
49
|
+
background-color: rgb(5,42,131);
|
50
|
+
|
51
|
+
border-bottom: 6px solid #000077;
|
52
|
+
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
.btn-push,.btn-push2:active {
|
58
|
+
|
59
|
+
transform: translateY(6px);
|
60
|
+
|
61
|
+
border-bottom: none;
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
```HTML
|
70
|
+
|
71
|
+
<p style="text-align: center;"><a class="btn-push" href="https">play</a></p>
|
72
|
+
|
73
|
+
<p style="text-align: center;"><a class="btn-push2" href="" target="_blank">play</a></p>
|
74
|
+
|
75
|
+
```
|