回答編集履歴

1

追記

2016/11/05 14:15

投稿

gin
gin

スコア2722

test CHANGED
@@ -41,3 +41,67 @@
41
41
  }
42
42
 
43
43
  ```
44
+
45
+ ###追記
46
+
47
+ ```css
48
+
49
+ .list-info .title {
50
+
51
+ font-size: 3.8vw;
52
+
53
+ font-weight: 600;
54
+
55
+ margin-top: 0.8vh;
56
+
57
+ margin-bottom: 0.3vh;
58
+
59
+ color: #463a1c;
60
+
61
+ overflow: hidden;
62
+
63
+ height: 4.5em;
64
+
65
+ width: 100%;
66
+
67
+ }
68
+
69
+ ```
70
+
71
+ chrome以外はここまで。
72
+
73
+ ```css
74
+
75
+ .list-info .title {
76
+
77
+ font-size: 3.8vw;
78
+
79
+ font-weight: 600;
80
+
81
+ margin-top: 0.8vh;
82
+
83
+ margin-bottom: 0.3vh;
84
+
85
+ color: #463a1c;
86
+
87
+ overflow: hidden;
88
+
89
+ height: 4.5em;
90
+
91
+ width: 100%;
92
+
93
+
94
+
95
+ display: -webkit-box;
96
+
97
+ -webkit-box-orient: vertical;
98
+
99
+ -webkit-line-clamp: 3;
100
+
101
+ height: auto;
102
+
103
+ }
104
+
105
+ ```
106
+
107
+ `line-clamp`が有効なchromeは`height: auto;`に書き換える。