質問編集履歴

1

テーマ名、ソースを追記しました。

2021/02/12 09:27

投稿

yoikorin
yoikorin

スコア0

test CHANGED
File without changes
test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  お世話になります。
6
6
 
7
- WordPressでinline-blockのボタンをdivで囲んで右寄せにしたのですが
7
+ WordPress(テーマ:Minimal WP)でinline-blockのボタンをdivで囲んで右寄せにしたのですが
8
8
 
9
9
  高さが認識されず、後に続けたh3の高さまでおかしくなってしまいます。
10
10
 
@@ -19,6 +19,64 @@
19
19
  bit.ly/3aYc5QP
20
20
 
21
21
  このページの水色の部分です。
22
+
23
+
24
+
25
+ ---css---
26
+
27
+ .right {
28
+
29
+ text-align: right;
30
+
31
+ margin: 2.5% 0 8%;
32
+
33
+ width: 100%;
34
+
35
+ }
36
+
37
+ .myButton {
38
+
39
+ background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
40
+
41
+ background-color: #ffffff;
42
+
43
+ border: 2px solid #444;
44
+
45
+ display: inline-block;
46
+
47
+ cursor: pointer;
48
+
49
+ color: #222222;
50
+
51
+ font-size: 18px;
52
+
53
+ padding: 8px 24px;
54
+
55
+ text-decoration: none;
56
+
57
+ }
58
+
59
+ ---/css---
60
+
61
+
62
+
63
+ ---html---
64
+
65
+ <div class="right">
66
+
67
+ <a href="https://fitness-wellness.jp/about#technogym" class="myButton">詳しくはこちら></a>
68
+
69
+ </div>
70
+
71
+
72
+
73
+ <h3 class="simple-h back_color">
74
+
75
+ 2. 24時間お好きな時間に~~
76
+
77
+ </h3>
78
+
79
+ ---/html---
22
80
 
23
81
 
24
82