"foo"と "bar"イメージに関する短いテキストがあります。私は画像とこれらの対応するテキストを並べて整列させたい、そして現在は::after
疑似要素でそれに達しました。フレックスボックスを使用した小さなテキストと大きなイメージ
多分、フレックスボックスを使用して、それを達成するより良い方法でしょうか?
<style>
.image { width: 510px; float: right; }
p::after {
content: " ";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
</style>
<div class="image">
<img src="Foo.jpg">
<p class="caption">Caption</p>
</div>
<p>Text about Foo. Text text text text text text text text text
text text text text text text text text text text text text text
text text</p>
<div class="image">
<img src="Bar.jpg">
<p class="caption">Caption</p>
</div>
<p>Text about Bar. Text text text text text text text text text
text text text text text text text text text text text text text
text text</p>
画像を中央に、テキストを両面にしますか?私は本当にあなたが期待したことを理解していない。 – Ferrrmolina