回答編集履歴

1

説明不足かもしれなかったので少し足しました

2018/10/28 15:46

投稿

akihiro3
akihiro3

スコア955

test CHANGED
@@ -85,3 +85,35 @@
85
85
 
86
86
 
87
87
  ```
88
+
89
+ レスポンシブ対応の場合
90
+
91
+ ```css
92
+
93
+ @media screen and (max-width: 480px) { /* iPhone 7/6 Plus縦 */
94
+
95
+ .balloon-img-left img {
96
+
97
+ height: ○○px; /* 変更サイズ */
98
+
99
+ width: ○○px; /* 変更サイズ */
100
+
101
+ }
102
+
103
+ }
104
+
105
+
106
+
107
+ @media screen and (max-width: 320px) { /* iPhone 5/SE/4以下縦 */
108
+
109
+ .balloon-img-left img {
110
+
111
+ height: ○○px; /* 変更サイズ */
112
+
113
+ width: ○○px; /* 変更サイズ */
114
+
115
+ }
116
+
117
+ }
118
+
119
+ ```