私はワードプレスを使用しています22十六十二テーマ。私はページを作成しましたが、今では4つの画像を挿入しました。ページを開くと、画像は垂直の順序で、すなわち1つ上に表示されます。それらにはの表示:ブロックプロパティも割り当てられていません。私はdisplay:inlineとdisplay:inline-blockプロパティを試しましたが、動作しません。これらはinspect要素にはっきりと示されていますが、要素には影響しません。 (また、浮動小数点:左は完璧に動作しますが、表示:インラインで作業したい)。なぜこれらの画像は表示を受け入れないのですか?
問題は何ですか?どのように解決できますか? はこちらのページで書かれたテキストです:
<div id="gal-1">
<img src="http://localhost/microsoft/wp-content/themes/twentysixteen/images/surface.jpg" alt="" />
<img src="http://localhost/microsoft/wp-content/themes/twentysixteen/images/lumia.jpg" alt="" />
<img src="http://localhost/microsoft/wp-content/themes/twentysixteen/images/windows.jpg" alt="" />
<img src="http://localhost/microsoft/wp-content/themes/twentysixteen/images/edge.jpg" alt="" />
</div>
イメージは既定では 'display:inline-block'です。画像が垂直方向に表示されている場合、画像に影響を与える他のコードがあります。 – ZeroRequiem