teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

コメントを受けて追記

2020/12/19 07:45

投稿

Lhankor_Mhy
Lhankor_Mhy

スコア37481

answer CHANGED
@@ -1,3 +1,40 @@
1
1
  こんにちは。
2
2
 
3
- `.product-single__photos img`→`img.product-single__photos`でいいのではないかな、と思うのですが、ダメですか?
3
+ `.product-single__photos img`→`img.product-single__photos`でいいのではないかな、と思うのですが、ダメですか?
4
+
5
+ # コメントを受けて追記
6
+
7
+ >__スマホ表示では80×80の正方形表示、PCでは10×10の正方形表示__
8
+
9
+ では、こんな感じでいいかと思います。
10
+
11
+ [サンプル](https://jsfiddle.net/Lhankor_Mhy/adshf9w7/)
12
+
13
+ ```scss
14
+ //theme.scss.liquid
15
+
16
+ //responsive images
17
+ .resp-img-wrapper {
18
+ width: 100%;
19
+ margin: 0 auto;
20
+
21
+ &.js {
22
+ position: relative;
23
+ }
24
+ }
25
+
26
+
27
+ //試した記述
28
+ @media (max-width:670px){// "{"忘れ
29
+ // .product-single__photos img{ クラス名の誤り
30
+ img.product-single__photo{
31
+ width: 80px;
32
+ }
33
+ } // "{"忘れ
34
+
35
+ @media (min-width:1200px){
36
+ img.product-single__photo{
37
+ width: 10px;
38
+ }
39
+ }
40
+ ```