Androidフォン3台(ブランドなどが異なります)では、私のウェブページは次のようになっています(本来あるべき姿です)。
パートナーのiPhone、家族のiPhone、友人のiPhoneでは、次のようになっています。
上の画像領域をレンダリングするモバイルSCSSファイルは次のとおりです。
body.landing-page {
&.blog {
> .contents {
max-width: 100%;
width: 100%;
display: block;
padding: 1em;
.page-first {
display: none;
}
}
.mobile-header .menu {
background-color: #4a4a4a !important;
/* height: min-content; */
}
.topic-list {
grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
padding: 2em 0 0 0;
.topic-byline {
.bull {
padding: .2em .5em;
}
}
}
}
.canvas {
padding: 0.8em !important;
}
.bull {
display:none
}
&.blog-post {
header {
background-color: $secondary;
}
.container {
width: 100%;
}
.post-container {
width: 100%;
}
.title-container {
background: no-repeat center/cover fixed;
display: flex;
flex-direction: column;
min-height: 530px;
max-height: 40%;
justify-content: flex-end;
align-items: center;
.title {
font-size: 2.0em !important;
width: 100%;
text-align: center;
/* margin: 0 0 1em 0; */
}
.topic-byline {
flex-direction: column;
.bull {
padding: .2em 1em;
}
}
}
img {
max-width: 100%;
height: auto;
}
.comment-container {
.comment-heading h4 {
text-align: center;
}
.comment-footer {
padding: 0 2em;
box-sizing: border-box;
justify-content: center;
}
}
}
&.blog,
&.blog-post {
.btn-subscribe {
padding: 0;
.fixed-avatar {
width: 60px;
height: 60px;
}
}
}
}
それで、すべてのiPhoneで画像が正しく配置されていないように見えるのはなぜですか?しかし、複数のAndroidフォンでは正しく配置されていますか?これをどうやって修正すればいいですか?この問題に合計30時間ほど悩まされています。
奇妙なことに、私の要素の検査でも、いくつかのiPhoneプリセットでは正常に表示されていますが、実際のデバイスではそうではありません…。

