teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

2

修正

2020/05/23 02:28

投稿

new1ro
new1ro

スコア4528

answer CHANGED
@@ -1,1 +1,4 @@
1
- (間違えて投稿したの削除しました)
1
+ こちら、参考になりそう
2
+
3
+ 参考URL:
4
+ [https://stackoverflow.com/questions/20482663/transparent-text-with-text-shadow-in-ie](https://stackoverflow.com/questions/20482663/transparent-text-with-text-shadow-in-ie)

1

(間違えて投稿したので削除しました。)

2020/05/23 02:27

投稿

new1ro
new1ro

スコア4528

answer CHANGED
@@ -1,13 +1,1 @@
1
- `text-align: center;`ではなく、`justify-content: center;`を使ってください。
2
-
3
- ```CSS
4
- li a {
5
- display: flex;
1
+ (間違えて投稿したので削除しました。)
6
- align-items: center; /* 上下の中央配置 */
7
-
8
- /* text-align: center; */ /* テキストの中央寄せ */
9
- justify-content: center; /* 左右の中央配置 */
10
- }
11
- ```
12
-
13
- `align-items: center;`と`justify-content: center;`はセットで使うことも多いのでまとめて覚えるとよさそうです。