回答編集履歴

1

コード追加

2020/02/02 07:52

投稿

hatena19
hatena19

スコア34084

test CHANGED
@@ -19,3 +19,87 @@
19
19
  ```
20
20
 
21
21
  左右のpaddingは0でも、text-align: center; で中央寄せになるのでいいのでは。
22
+
23
+
24
+
25
+
26
+
27
+ ---
28
+
29
+ 背景色は親要素に設定したほうがいいでしょう。
30
+
31
+ それも含めて修正したコード例です。
32
+
33
+
34
+
35
+ ```css
36
+
37
+ #introduction{
38
+
39
+ display: flex;
40
+
41
+ margin-top: 30px;
42
+
43
+ width: 100%;
44
+
45
+ background-color: #6CC6C4;
46
+
47
+ border-radius: 5px;
48
+
49
+ }
50
+
51
+
52
+
53
+ .child{
54
+
55
+ border-right:1px solid #595959;
56
+
57
+ }
58
+
59
+ #top-nav-last-child{
60
+
61
+ border-right: none;
62
+
63
+ }
64
+
65
+
66
+
67
+ #introduction .top-nav{
68
+
69
+ padding: 20px 0;
70
+
71
+ width: 20%;
72
+
73
+ overflow: hidden;
74
+
75
+ white-space: nowrap;
76
+
77
+ }
78
+
79
+
80
+
81
+ #introduction .top-nav a{
82
+
83
+ text-decoration: none;
84
+
85
+ color:white;
86
+
87
+ font-size: 13px;
88
+
89
+ font-weight: bold;
90
+
91
+ display: block;
92
+
93
+ text-align: center;
94
+
95
+ }
96
+
97
+
98
+
99
+ #introduction a:hover{
100
+
101
+ opacity: 0.6;
102
+
103
+ }
104
+
105
+ ```