質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -26,4 +26,58 @@
|
|
26
26
|
img {
|
27
27
|
vertical-align: bottom;
|
28
28
|
}
|
29
|
+
```
|
30
|
+
|
31
|
+
■8/2 追記
|
32
|
+
わかりにくく申し訳ありません。
|
33
|
+
再現可能な状態を記載いたします。
|
34
|
+
|
35
|
+
▼再現可能なブラウザ名とバージョン
|
36
|
+
ブラウザ:GoogleChrome ←他ブラウザは未確認
|
37
|
+
バージョン:59.0.3071.115
|
38
|
+
|
39
|
+
▼状態が確認できる画面サイズ
|
40
|
+
480px、448px、416px、320px 他にもあると思います。
|
41
|
+
|
42
|
+
▼再現可能なコード
|
43
|
+
```ここに言語を入力
|
44
|
+
<!doctype html>
|
45
|
+
<html>
|
46
|
+
<head>
|
47
|
+
<meta charset="utf-8">
|
48
|
+
<style type="text/css">
|
49
|
+
p, ul, li {
|
50
|
+
margin: 0;
|
51
|
+
padding: 0;
|
52
|
+
border: 0;
|
53
|
+
outline: 0;
|
54
|
+
font-size: 100%;
|
55
|
+
vertical-align: baseline;
|
56
|
+
background: transparent;
|
57
|
+
}
|
58
|
+
ul {
|
59
|
+
list-style: none;
|
60
|
+
}
|
61
|
+
img {
|
62
|
+
vertical-align: bottom;
|
63
|
+
max-width: 100%;
|
64
|
+
height: auto;
|
65
|
+
}
|
66
|
+
</style>
|
67
|
+
</head>
|
68
|
+
|
69
|
+
<body>
|
70
|
+
<ul>
|
71
|
+
<li>
|
72
|
+
<p><img src="https://placehold.jp/640x100.png"></p>
|
73
|
+
<p><img src="https://placehold.jp/640x100.png"></p>
|
74
|
+
<p><img src="https://placehold.jp/640x100.png"></p>
|
75
|
+
</li>
|
76
|
+
<li><img src="https://placehold.jp/640x100.png"></li>
|
77
|
+
<li><img src="https://placehold.jp/640x100.png"></li>
|
78
|
+
<li><img src="https://placehold.jp/640x100.png"></li>
|
79
|
+
</ul>
|
80
|
+
</body>
|
81
|
+
</html>
|
82
|
+
|
29
83
|
```
|