Website: isfnpub.com
Right now I’m using extra padding to get the image to fit, but as you see, the div thing is completely ignoring the image.
I’m working inside WordPress.
Code used:
<div style="border: 5px solid #FFC85D; padding: 10px; margin:30px;">
<p><strong>UPCOMING RELEASE: ISFN ANTHOLOGY #1</strong></p>
<p>
<strong>Authors: </strong> blah blah blah.</p>
<p><strong>Cover Art By:</strong> Xenia Latii</p>
<p>blah blah blah</p>
</div>
I want the div border to naturally wrap around all of the content, including the image. Without the extra padding the image overlaps the border and everything looks uglo.
Thanks.
EDIT: I used <div style="overflow:auto; ...">
and it seems to work. Is this an appropriate solution, or will I run into trouble later on?
If I understand correctly then I think that’s what you need.
Try to use
overflow:hidden
that should be solve your problem.Try
overflow: hidden
and set the width of the div to say for example 300px then set the pictures width to 100%.you need set width and height for your img tag in div:
e.g.
img style=”width: 100%; height: 100%;” alt=”abc…” src=”https://somesite/your_pic.png”
Both the overflow options suggested just cut off the part of the image that is outside of the div, rather than getting the image to resize to fit within, which is what really needs to happen. I found that using the div properties
float-none
seems to do the trick.