質問編集履歴

1

依頼にのっとって編集してみました。

2020/10/10 11:52

投稿

programing837
programing837

スコア6

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
- ![イメージ説明](67b7d164be19eecae260363c0389dbc5.png)
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
- ![イメージ説明](da28f1c1614f103bcd580165a9141319.png)
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
+ ```