質問編集履歴

3

HTMLコード追加

2020/06/08 13:56

投稿

Ryooooooooooooo
Ryooooooooooooo

スコア1

test CHANGED
File without changes
test CHANGED
@@ -156,6 +156,10 @@
156
156
 
157
157
 
158
158
 
159
+ </body>
160
+
161
+
162
+
159
163
  CSS
160
164
 
161
165
  @chaset"UTF-8";

2

CSS記載コード追加

2020/06/08 13:56

投稿

Ryooooooooooooo
Ryooooooooooooo

スコア1

test CHANGED
File without changes
test CHANGED
@@ -74,6 +74,10 @@
74
74
 
75
75
  HTML
76
76
 
77
+ <body>
78
+
79
+
80
+
77
81
  <div class="wrapper grid">
78
82
 
79
83
  <div class="item big-box">
@@ -152,7 +156,91 @@
152
156
 
153
157
 
154
158
 
155
- CSS
159
+ CSS
160
+
161
+ @chaset"UTF-8";
162
+
163
+ html {
164
+
165
+ font-size: 100%;
166
+
167
+ }
168
+
169
+ body{
170
+
171
+ font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
172
+
173
+ line-height: 1.7;
174
+
175
+ color: #432;
176
+
177
+ }
178
+
179
+ a {
180
+
181
+ text-decoration: none;
182
+
183
+ }
184
+
185
+ img {
186
+
187
+ max-width: 100%;
188
+
189
+ }
190
+
191
+
192
+
193
+ .wrapper{
194
+
195
+ max-width: 1100px;
196
+
197
+ margin: 0 auto;
198
+
199
+ padding: 0 4%;
200
+
201
+ }
202
+
203
+
204
+
205
+ /*モバイル版-----------*/
206
+
207
+ @media (max-width: 600px) {
208
+
209
+
210
+
211
+ .big-box {
212
+
213
+ grid-column: auto;
214
+
215
+ grid-row: auto;
216
+
217
+ }
218
+
219
+ .big-box img {
220
+
221
+ height: 100%;
222
+
223
+ }
224
+
225
+ }
226
+
227
+
228
+
229
+
230
+
231
+ .grid{
232
+
233
+ display: grid;
234
+
235
+ gap: 26px;
236
+
237
+ grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
238
+
239
+ margin-top: 6%;
240
+
241
+ margin-bottom: 50px;
242
+
243
+ }
156
244
 
157
245
  .big-box{
158
246
 
@@ -174,22 +262,6 @@
174
262
 
175
263
 
176
264
 
177
- @media (max-width: 600px) {
178
-
179
- .big-box {
180
-
181
- grid-column: auto;
182
-
183
- grid-row: auto;
184
-
185
- }
186
-
187
- .big-box img {
188
-
189
- height: 100%;
190
-
191
- }
192
-
193
265
 
194
266
 
195
267
  ```

1

CSS反映している部分の記載を追加

2020/06/08 13:51

投稿

Ryooooooooooooo
Ryooooooooooooo

スコア1

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  レスポンシブに対応させようとCSSを書いた部分が反映しません。
12
12
 
13
+
14
+
15
+
16
+
13
17
  ### 発生している問題・エラーメッセージ
14
18
 
15
19
 
@@ -32,7 +36,31 @@
32
36
 
33
37
  height: 100%;
34
38
 
35
- }この部分が適用されない
39
+ }この部分が適用され
40
+
41
+
42
+
43
+ 表示サイズが600px以下でも
44
+
45
+ .big-box{
46
+
47
+ grid-column: 1/3;
48
+
49
+ grid-row: 1/3;
50
+
51
+ }
52
+
53
+ .big-box img{
54
+
55
+ height: 94%;
56
+
57
+ width: 100%;
58
+
59
+ object-fit: cover;
60
+
61
+ }
62
+
63
+ この部分が適用されてしまってます。
36
64
 
37
65
  ```
38
66
 
@@ -176,6 +204,8 @@
176
204
 
177
205
 
178
206
 
207
+
208
+
179
209
  ### 補足情報(FW/ツールのバージョンなど)
180
210
 
181
211