1. ホーム
  2. css

[解決済み】bootstrap 3で画像にテキストを回り込ませる

2022-02-15 17:22:12

質問

コラムの画像にテキストを回り込ませる際、問題が発生しました。 複数のページを運営しているテンプレートがあるのですが、画像の一部が長くないため、カラム全体を覆うことができません...。 私は彼らが2つの異なるdivにあることを認識し、しかし、誰もがこのための解決策を持っている場合は、私に知らせてください。

何が問題なのか読んで見れば、重複していないことが分かると思います。

私のコードはこんな感じです。

    <div class="row" data-sf-element="Row">
  <div id="contentPlaceholder_C002_Col00" class="sf_colsIn col-md-6" data-sf-element="Column 1">
    <div>
      <div>
        <h2>Contrary to popular belief, Lorem Ipsum is not simply r</h2>
        <p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during th</p>
        <p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during th</p>
      </div>
    </div>
  </div>
  <div id="contentPlaceholder_C002_Col01" class="col-md-6" data-sf-element="Column 2"> <img src="/images/default-source/careers/careers_1.jpg?sfvrsn=2" title="careers_1" alt="careers_1"> </div>
</div>

解決方法は?

2列で使用する場合、テキストが画像に回り込むことはありません。

画像とテキストを1つのカラムに入れ、フルで与える必要があります。そして、テキストと画像をdivで囲み、左側にフロートさせます。このような感じです(コードは例であり、テストはしていません)。

<div class="col-md-12">
   <div class="pull-left"><img src="YourImage.png"/></div>
   <div class="pull-left">Your text goes here......</div>
</div>

テキストが画像に密着しないように、画像に余白が必要な場合があります。