-2

I got a picture under text and always want it to be centered below the text.

<div>
    <div>
        <div style="color: black;margin-top: 20px;"> Long text where i want a picture beneath with a <a href="https://crop-circle.imageonline.co/crop-circle.png" style="color:black;" target="_blank">Flower</a> </div>
        <a href="https://www.asd.de/">
            <div> <img class="img-responsive" src="https://crop-circle.imageonline.co/crop-circle.png" target="_blank" style="padding-top:2px;height:auto;max-width: 170px;"> </div>
        </a>
    </div>
</div>

already tried with display:block, inline-block, grid with different sizes etc.

this is what i am looking for:

this is a long text and i want the picture to be centerd
                  __________________
                 |                  |
                 |   Picture        |
                 |                  |
                 ▔▔▔▔▔▔▔▔▔▔▔
Cepturion
  • 11
  • 4

2 Answers2

0

Try this

<div>
    <div>
        <div style="color: black;margin-top: 20px;"> Long text where i want a picture beneath with a <a href="https://crop-circle.imageonline.co/crop-circle.png" style="color:black;" target="_blank">Flower</a> </div>
        <a href="https://www.asd.de/">
            <div> <img class="img-responsive" src="https://crop-circle.imageonline.co/crop-circle.png" target="_blank" style="display: block; margin-left: auto; margin-right: auto; width: 50%; padding-top: 2px;height: auto;max-width: 170px"> </div>
        </a>
    </div>
</div>
Kitsor
  • 144
  • 2
  • 10
0
<div>
  <div>
      <div style="text-align: center; color: black;margin-top: 20px;"> Long text where i want a picture beneath with a <a href="https://crop-circle.imageonline.co/crop-circle.png" style="color:black;" target="_blank">Flower</a> </div>
      <a href="https://www.asd.de/">
          <div> <img class="img-responsive" src="https://crop-circle.imageonline.co/crop-circle.png" target="_blank" style="padding-top:2px;height:auto;max-width: 170px;display: block; margin: 0px auto;"> </div>
      </a>
  </div>
</div>
Vishal_VE
  • 1,852
  • 1
  • 6
  • 9