回答編集履歴

2

コード追加

2020/01/09 13:30

投稿

hatena19
hatena19

スコア33757

test CHANGED
@@ -23,3 +23,39 @@
23
23
  参考リンク
24
24
 
25
25
  [【CSS】displayの使い方を総まとめ!inlineやblockの違いは?](https://saruwakakun.com/html-css/basic/display)
26
+
27
+
28
+
29
+ 追記
30
+
31
+ ---
32
+
33
+ h3要素をセンタリングしたい場合は、下記のように囲むタグを追加することになりますね。
34
+
35
+ ```html
36
+
37
+ <div class="wrapper"><h3>☆リンゴ☆</h3></div>
38
+
39
+ ```
40
+
41
+
42
+
43
+ ```css
44
+
45
+ .wrapper {
46
+
47
+ text-align: center;
48
+
49
+ }
50
+
51
+ h3 {
52
+
53
+ display: inline-block;
54
+
55
+ background: linear-gradient(transparent 0%, #c1e0ff 0%);
56
+
57
+ font-weight: bold;
58
+
59
+ }
60
+
61
+ ```

1

参考リンク追記

2020/01/09 13:30

投稿

hatena19
hatena19

スコア33757

test CHANGED
@@ -19,3 +19,7 @@
19
19
  }
20
20
 
21
21
  ```
22
+
23
+ 参考リンク
24
+
25
+ [【CSS】displayの使い方を総まとめ!inlineやblockの違いは?](https://saruwakakun.com/html-css/basic/display)