回答編集履歴
1
追記
test
CHANGED
@@ -63,3 +63,69 @@
|
|
63
63
|
}
|
64
64
|
|
65
65
|
```
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
ただし、上記のように行うならば、画像ごとにユニークなクラスを与えてしまったほうが分かりやすくなると思います ([動作確認用リンク](https://jsfiddle.net/rjqf1ac3/1/))。
|
70
|
+
|
71
|
+
```HTML
|
72
|
+
|
73
|
+
<div>
|
74
|
+
|
75
|
+
<img class="uncle_first" src="http://placehold.jp/3d4070/ffffff/150x150.png" alt="uncle">
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div>
|
80
|
+
|
81
|
+
<img class="uncle_second" src="http://placehold.jp/3d4070/ffffff/450x250.png" alt="uncle">
|
82
|
+
|
83
|
+
</div>
|
84
|
+
|
85
|
+
```
|
86
|
+
|
87
|
+
```CSS
|
88
|
+
|
89
|
+
.uncle_first {
|
90
|
+
|
91
|
+
width: 100%;
|
92
|
+
|
93
|
+
height: auto;
|
94
|
+
|
95
|
+
margin-top: 60px;
|
96
|
+
|
97
|
+
}
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
.uncle_second {
|
102
|
+
|
103
|
+
display: none;
|
104
|
+
|
105
|
+
}
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
@media screen and (min-width: 744px) {
|
110
|
+
|
111
|
+
.uncle_first {
|
112
|
+
|
113
|
+
display: none;
|
114
|
+
|
115
|
+
}
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
.uncle_second {
|
120
|
+
|
121
|
+
display: block;
|
122
|
+
|
123
|
+
width: 100%;
|
124
|
+
|
125
|
+
height: auto;
|
126
|
+
|
127
|
+
}
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
```
|