回答編集履歴
1
追記
answer
CHANGED
@@ -18,4 +18,27 @@
|
|
18
18
|
<a href="#" class="logout">ログアウト</a>
|
19
19
|
</div>
|
20
20
|
|
21
|
+
```
|
22
|
+
|
23
|
+
# 追記
|
24
|
+
```CSS
|
25
|
+
<style>
|
26
|
+
.header-list {
|
27
|
+
display:block;
|
28
|
+
border:solid 1px #000000;
|
29
|
+
text-align: center;
|
30
|
+
}
|
31
|
+
.header-list a {
|
32
|
+
text-decoration: none;
|
33
|
+
color: red;
|
34
|
+
font-size: 20px;
|
35
|
+
}
|
36
|
+
.header-list:hover a{
|
37
|
+
color: black;
|
38
|
+
opacity: 0.4;
|
39
|
+
}
|
40
|
+
</style>
|
41
|
+
<div class="header-list">
|
42
|
+
<a href="#" class="logout">ログアウト</a>
|
43
|
+
</div>
|
21
44
|
```
|