How to wrap div around image?

Firze

I trying to wrap image inside a div, but the div gets expanded by the parent div.

<div id="parent" style="display: inline-block; position: relative; text-align:center">
    <div id="wrapper">
        <img>
    </div>
    <p>Some text that expands the wrapper div more than image width</p>
</div>

The text field expands the parent div to be wider than the image and this also expands the wrapper div. How can I make the wrapper div to be exactly the same size as the img?

img nor the wrapper have no margin or padding, but yet wrapper div is wider than the image.

Josan Iracheta

Use display:inline-block on #wrappper

DEMO

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to wrap text around image in div?

From Dev

How to overlap image over the div, but still wrap text around an image?

From Dev

How to overlap image over the div, but still wrap text around an image?

From Dev

How to wrap a div containing text around a div containing an image?

From Dev

How to wrap text around an image?

From Dev

wrap "inline-block" div around image

From Dev

wrap "inline-block" div around image

From Dev

How to make div's height AND background image stretch to wrap around all content in the div?

From Dev

How to wrap text around floating, fixed image?

From Dev

How to wrap images around one image in the center?

From Dev

How to make ImageButtons bounds wrap around the image?

From Dev

How to wrap text around floating, fixed image?

From Dev

How to make ImageButtons bounds wrap around the image?

From Dev

How to wrap content around an image with CSS?

From Dev

xcode swift how to wrap text around image

From Dev

how wrap div around two element with jquery

From Dev

How to wrap div around <p> tag?

From Dev

how wrap div around two element with jquery

From Dev

How to wrap a link around a div jQuery?

From Dev

Wrap image around a circle

From Dev

Wrap floated parent div's width around child image

From Dev

Wrap div around a hidden div

From Dev

How can I wrap text around image using Bootstrap?

From Dev

Bootstrap - How to make text wrap around an image on small devices?

From Dev

How can I wrap text around image using Bootstrap?

From Dev

How to wrap text around an image placed at the END of a block of text?

From Dev

How to "shrink wrap" a div around it's floated children

From Dev

How to "shrink wrap" a div around it's floated children

From Dev

How can I wrap a div around existing elements?

Related Related

  1. 1

    How to wrap text around image in div?

  2. 2

    How to overlap image over the div, but still wrap text around an image?

  3. 3

    How to overlap image over the div, but still wrap text around an image?

  4. 4

    How to wrap a div containing text around a div containing an image?

  5. 5

    How to wrap text around an image?

  6. 6

    wrap "inline-block" div around image

  7. 7

    wrap "inline-block" div around image

  8. 8

    How to make div's height AND background image stretch to wrap around all content in the div?

  9. 9

    How to wrap text around floating, fixed image?

  10. 10

    How to wrap images around one image in the center?

  11. 11

    How to make ImageButtons bounds wrap around the image?

  12. 12

    How to wrap text around floating, fixed image?

  13. 13

    How to make ImageButtons bounds wrap around the image?

  14. 14

    How to wrap content around an image with CSS?

  15. 15

    xcode swift how to wrap text around image

  16. 16

    how wrap div around two element with jquery

  17. 17

    How to wrap div around <p> tag?

  18. 18

    how wrap div around two element with jquery

  19. 19

    How to wrap a link around a div jQuery?

  20. 20

    Wrap image around a circle

  21. 21

    Wrap floated parent div's width around child image

  22. 22

    Wrap div around a hidden div

  23. 23

    How can I wrap text around image using Bootstrap?

  24. 24

    Bootstrap - How to make text wrap around an image on small devices?

  25. 25

    How can I wrap text around image using Bootstrap?

  26. 26

    How to wrap text around an image placed at the END of a block of text?

  27. 27

    How to "shrink wrap" a div around it's floated children

  28. 28

    How to "shrink wrap" a div around it's floated children

  29. 29

    How can I wrap a div around existing elements?

HotTag

Archive