回答編集履歴
1
Flex追加。
answer
CHANGED
@@ -2,4 +2,14 @@
|
|
2
2
|
table.sample td a {
|
3
3
|
line-height: 30px;
|
4
4
|
}
|
5
|
+
```
|
6
|
+
|
7
|
+
-- 10:20 追記。
|
8
|
+
flexを使う場合。
|
9
|
+
```CSS
|
10
|
+
table.sample td a {
|
11
|
+
display: flex;
|
12
|
+
align-items: center;
|
13
|
+
justify-content: center;
|
14
|
+
}
|
5
15
|
```
|