I have floated images and inset boxes at the top of a container using float:right (or left) many times. Recently I hit a need to float a div at the bottom right corner of another div with the normal text wrap that you get with float (text wrapped above and to the left only).

I thought this must be relatively easy even though float has no bottom value but I haven't been able to do it using a number of techniques and searching the web hasn't come up with anything other than using absolute positioning but this doesn't give the correct word wrap behaviour.

I had thought this would be a very common design but apparently it isn't. If nobody has a suggestion I'll have to break my text up into separate boxes and align the div manually but that is rather precarious and I'd hate to have to do it on every page that needs it.

link|improve this question
18  
I'll work on this "float to the bottom" issue just as soon as i figure out how to make something sink to the top... ;-) – Shog9 Nov 23 '08 at 1:51
3  
@Shog9 conclusion: css needs a "sink" element. – Gail Terman Feb 23 '11 at 21:34
feedback

15 Answers

Set the parent div's "position: relative", then the inner div do "position: absolute; bottom: 0;" and there you go :)

link|improve this answer
5  
Yeah, I thought this was the way to go also but when you set the position to absolute the element no longer participates in the layout of the containing element, so there is no word wrap and the text in the bottom corner is obscured. – Stephen Martin Nov 23 '08 at 2:07
Maybe you could use a combination of a floated containing div with the position relative and absolute technique. – dylanfm Nov 23 '08 at 2:28
1  
Setting the float to right and then applying e.g. a negative top relative position, leads to the image being pushed over/under the text render before in the container before that image. – FelixLam Jul 18 '11 at 15:48
feedback
up vote 13 down vote accepted

After struggling with various techniques for a couple of days I have to say that this appears to be impossible. Even using javascript (which I don't want to do) it doesn't seem possible.

To clarify for those who may not have understood - this is what I am looking for: in publishing it is quite common to layout an inset (picture, table, figure, etc.) so that its bottom lines up with the bottom of the last line of text of a block (or page) with text flowing around the inset in a natural manner above and to the right or left depending on which side of the page the inset is on. In html/css it is trivial to use the float style to line up the top of an inset with the top of a block but to my surprise it appears impossible to line up the bottom of the text and inset despite it being a common layout task.

I guess I'll have to revisit the design goals for this item unless anyone has a last minute suggestion.

link|improve this answer
3  
Nope - this is not print publishing. There are some things that are extraordinarily difficult or impossible to accomplish using just html/css. – Traingamer Nov 25 '08 at 17:28
2  
<div style="clear:both"></div> in the lower div, this works. – zengr Jul 15 '10 at 0:53
feedback

This puts a fixed div at the bottom of the page and fixes to the bottom as you scroll down

#div    {left:0; position:fixed; text-align:center; bottom:0; width:100%; }
link|improve this answer
This doesn't do what he's trying to do. @Timoty and @Yona got it right. – Adam May 2 '11 at 18:07
feedback

Pretty old question, but still ... You can float a div to the bottom of the page like this:

div{
  position: absolute; 
  height: 100px; 
  top: 100%; 
  margin-top:-100px; 
}

You can see where the magic happens. I think you could do the same for floating it to the bottom of a parent div.

link|improve this answer
This doesn't wrap text around it, though. Any text appears behind it. – Gail Terman Feb 28 '11 at 21:28
feedback

Put the div in another div and set the parent div's style to 'position:relative;' Then on the child div set the following css properties: 'position:absolute; bottom:0;'

link|improve this answer
See my comment to Timothy. As you can see here: emsoft.ca/absolutebottomtest.html the word wrap doesn't work. And some of the content is obscured. – Stephen Martin Nov 23 '08 at 2:35
feedback

If you're okay with only the bottom-most line of the text going to the side of the block (as opposed to completely around and underneath it, which you can't do without ending the block and starting a new one), it's not impossible to float a block to one of the bottom corners of a parent block. If you put some content in a paragraph tag within a block and want to float a link to the bottom right corner of the block, put the link within the paragraph block and set it to float: right, then put in a div tag with clear: both set just underneath the end of the paragraph tag. The last div is to make sure the parent tag surrounds the floated tags.

<div class="article" style="display: block;">
    <h3>title</h3>
        <p>
            text content
            <a href="#" style="display: block;float: right;">Read More</a>
        </p>
    <div style="clear: both;"></div>
</div>
link|improve this answer
feedback

If you need relative alignment and DIV's still aren't give you what you want, just use tables and set valign = "bottom" in the cell you want the content aligned to the bottom. I know it's not a great answer to your question since DIV's are supposed to replace tables, but this is what I had to do recently with an image caption and it has worked flawlessly so far.

link|improve this answer
feedback

Not sure, but a scenario posted earlier seemed to work if you use position: relative instead of absolute on the child div.

<style type="text/css">
#parent { width: 780px; height: 250px; background: yellow; border: solid 2px red; }
#child { position: relative; height: 50px; width: 780px; top: 100%; margin-top:-50px; background: blue; border: solid 2px green; }
</style>

    <div id="parent">
        This has some text in it.

        <div id="child">
            This is just some text to show at the bottom of the page</div>
    </div>

And no tables...!

link|improve this answer
feedback

I got this to work on the first try by adding position:absolute; bottom:0; to the div ID inside the CSS. I did not add the parent style position:relative;.

It is working perfect in both Firefox and IE 8, have not tried it in IE 7 yet.

link|improve this answer
feedback

I tried this scenario posted earlier also;

div {
  position: absolute; 
  height: 100px; 
  top: 100%; 
  margin-top:-100px; 
}

The absolute positioning fixes the div to the lowest part of the browser upon loading the page, but when you scroll down if the page is longer it does not scroll with you. I changed the positioning to be relative and it works perfect. The div goes straight to the bottom upon load so you won't actually see it until you get to the bottom.

div {
      position: relative;
      height:100px; /* Or the height of your image */
      top: 100%;
      margin-top: -100px;
}
link|improve this answer
feedback

i know that this stuff is old but i recently ran into this problem.

"use absolute position divs" advice is really silly, because the whole float thing kind of loses point with absolute positions..

now, i did not find an universal solution, but in a lot of cases prople use floating divs just to display something in a row, like a series of span elements. and you can't vertically align that.

to achieve a similar effect you can do this: do not make the div float, but set it's display property to "inline-block". then you can align it vertically however it pleases you. you just need to set parent's div property "vertical-align" to either "top", "bottom", "middle" or "baseline"

i hope that helps someone

link|improve this answer
correction: not parent's but it's vertical-align property – countersweet Sep 16 '10 at 15:20
No idea if this works in common situations, but with jQueryMobile it's completely non-functional. – Wytze Mar 28 at 14:32
feedback

an alternative answer is the judicious use of tables and rowspan. by setting all table cells on the preceeding line (except the main content one) to be rowspan="2" you will always get a one cell hole at the bottom of your main table cell that you can always put valign="bottom".

You can also set its height to be the minimum you need for one line. Thus you will always get your favourite line of text at the bottom regardless of how much space the rest of the text takes up.

I tried all the div answers, I was unable to get them to do what I needed.

<table>
<tr>
   <td valign="top">
     this is just some random text
     <br> that should be a couple of lines long and
     <br> is at the top of where we need the bottom tag line
   </td>
   <td rowspan="2">
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     this<br/>
     is really<br/>
     tall
  </td>
</tr>
<tr>
  <td valign="bottom">
      now this is the tagline we need on the bottom
  </td>
</tr>
</table>
link|improve this answer
Table based design is considered bad practice amongst most web developers. CSS is preferred for styling a page, and you can accomplish the same things in a much more semantic friendly manner. – Ktash Jan 2 at 22:01
Tables are not very multi-format friendly (print, screen, mobile), they have no flow to them. Just offering an alternative. – cdturner Jan 4 at 19:40
feedback

One interesting approach is to stack a couple of right float elements on top of each other.

<div>
<div style="float:right;height:200px;"></div>
<div style="float:right;clear:right;">Floated content</div>
<p>Other content</p>
</div>

Only problem is that this only works when you know the height of the box.

link|improve this answer
feedback

here is my solution:

<style>
.sidebar-left{float:left;width:200px}
.content-right{float:right;width:700px}

.footer{clear:both;position:relative;height:1px;width:900px}
.bottom-element{position:absolute;top:-200px;left:0;height:200px;}

</style>

<div class="sidebar-left"> <p>content...</p></div>
<div class="content-right"> <p>content content content content...</p></div>

<div class="footer">
    <div class="bottom-element">bottom-element-in-sidebar</div>
</div>
link|improve this answer
feedback

I have acheived this in JQuery by putting a zero width strut element above the float right, then sizing the strut (or pipe) according to parent height minus floated child's height.

Before js kicks in I am using the position absolute approach, which works but allows text flow behind. Therefore I switch to position static to enable the strut approach. (header is the parent element, cutout is the one i want bottom right, and pipe is my strut)

$("header .pipe").each(function(){
    $(this).next(".cutout").css("position","static");       
    $(this).height($(this).parent().height()-$(this).next(".cutout").height());                                                 
});

CSS

header{
    position: relative; 
}

header img.cutout{
    float:right;
    position:absolute;
    bottom:0;
    right:0;
    clear:right
}
header .pipe{
    width:0px; 
    float:right

}

The pipe must come 1st, then the cutout, then the text in the HTML order.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.