回答編集履歴
1
answer
CHANGED
@@ -9,4 +9,22 @@
|
|
9
9
|
.media-heading a {
|
10
10
|
color: #6c3910 !important;
|
11
11
|
}
|
12
|
-
```
|
12
|
+
```
|
13
|
+
> もっと大元の(body など)ところでフォントカラー設定すべきなのかもしれません。
|
14
|
+
|
15
|
+
そんな難しい話しではないです。
|
16
|
+
```
|
17
|
+
.media-heading a {
|
18
|
+
color: #6c3910 !important;
|
19
|
+
}
|
20
|
+
|
21
|
+
.media-heading a:hover {
|
22
|
+
color: 色 !important;
|
23
|
+
}
|
24
|
+
|
25
|
+
.media-heading a:visited {
|
26
|
+
color: 色 !important;
|
27
|
+
}
|
28
|
+
```
|
29
|
+
リンクの文字色を指定する
|
30
|
+
[http://www.tagindex.com/stylesheet/link/color.html](http://www.tagindex.com/stylesheet/link/color.html)
|