回答編集履歴

4

-追記3-

2018/03/05 06:21

投稿

yoshinavi
yoshinavi

スコア3523

test CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
  m(_ _)m
40
40
 
41
-
41
+ ***
42
42
 
43
43
  -追記2-
44
44
 

3

-追記2-

2018/03/05 06:21

投稿

yoshinavi
yoshinavi

スコア3523

test CHANGED
@@ -37,3 +37,15 @@
37
37
  すみません。質問をよく読んでなかったです。ローカルでの読込にはしていなかったです。
38
38
 
39
39
  m(_ _)m
40
+
41
+
42
+
43
+ -追記2-
44
+
45
+ 以下のリンクは参考になるでしょうか?
46
+
47
+
48
+
49
+ [ウェブフォントを使用するとデフォルトのfont-style: boldがnormalになる](https://productforums.google.com/forum/#!topic/chrome-ja/dRcBObfLh1c)
50
+
51
+ [太字のバージョンを指定していない@ font-faceを使用している場合、font-weight CSSプロパティは無視されます。](https://bugs.chromium.org/p/chromium/issues/detail?id=101577)

2

1

2018/03/05 06:19

投稿

yoshinavi
yoshinavi

スコア3523

test CHANGED
@@ -31,3 +31,9 @@
31
31
  }
32
32
 
33
33
  ```
34
+
35
+
36
+
37
+ すみません。質問をよく読んでなかったです。ローカルでの読込にはしていなかったです。
38
+
39
+ m(_ _)m

1

追記

2018/02/28 10:22

投稿

yoshinavi
yoshinavi

スコア3523

test CHANGED
@@ -3,3 +3,31 @@
3
3
 
4
4
 
5
5
  私も「Noto Serif」をローカルに入れてWebフォントとして使用しています。指定は数値で現在問題なく表示されます。
6
+
7
+
8
+
9
+ -追記-
10
+
11
+ 現在使用している指定方法です(太字のみ抜粋)
12
+
13
+ ```CSS
14
+
15
+ @font-face {
16
+
17
+ font-family: 'Noto Serif JP';
18
+
19
+ font-style: normal;
20
+
21
+ font-weight: 900;
22
+
23
+ src: url(./example/NotoSerifCJKjp-Black.woff2) format('woff2'),
24
+
25
+ url(./example/NotoSerifCJKjp-Black.woff) format('woff'),
26
+
27
+ url(./example/NotoSerifCJKjp-Black.otf) format('opentype');
28
+
29
+
30
+
31
+ }
32
+
33
+ ```