最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - position image at bottom of div without wrapper - Stack Overflow

programmeradmin1浏览0评论

How would I position an image at the bottom of a div using JavaScript without wrapping it? I understand I can wrap it with a div and do absolute positioning, but that muddies up the markup and it's dynamic content too, so I can't wrap the image, it has to target an image in a specific div.

Here is the basic markup, need it to find height of div, then position image at bottom. i think that is how it would work?

<div id="content">
 <p>some text</p>
 <img src="img.jpg"/>
</div>

How would I position an image at the bottom of a div using JavaScript without wrapping it? I understand I can wrap it with a div and do absolute positioning, but that muddies up the markup and it's dynamic content too, so I can't wrap the image, it has to target an image in a specific div.

Here is the basic markup, need it to find height of div, then position image at bottom. i think that is how it would work?

<div id="content">
 <p>some text</p>
 <img src="img.jpg"/>
</div>
Share Improve this question edited May 7, 2012 at 12:24 CrazyTim 7,3536 gold badges35 silver badges56 bronze badges asked Sep 2, 2011 at 13:55 LukaszLukasz 9443 gold badges14 silver badges22 bronze badges 2
  • 1 wrappers and absolute positioning are the only ways to do it reliably cross-browser. It doesn't really muddies up the markup. – Aleks G Commented Sep 2, 2011 at 13:57
  • I've had problems doing absolute position on images, unless I wrap them. that is definitely muddied markup. unless I'm misunderstanding. – Lukasz Commented Sep 2, 2011 at 14:24
Add a ment  | 

3 Answers 3

Reset to default 4

You can position an image as well to the bottom of a DIV, you don’t need to add a second wrapper. Either do it in CSS:

div { position: relative; } 

div > img { position: absolute; bottom: 0; }

or do the same thing in JS if you need it be in JS.

As simple as this~~

#content
{ position:relative; padding-bottom:50px; } // if image height is 50px;
#content > img
{ position:absolute; bottom:0; }

That should do it. If you don’t use padding-bottom in the second rule, the image will be overflowed (and will cover the text) if the content of the div (its text) is not taller that the image height.

I would do it using CSS for sure, and don't remend doing it this way.. but you can do it with JS like so

Live Demo

var image = document.getElementById("image"),
    contentDiv = document.getElementById("content");

image.style.position = 'absolute';
image.style.top = contentDiv.offsetTop + contentDiv.offsetHeight - image.offsetHeight + 'px'; 
发布评论

评论列表(0)

  1. 暂无评论