Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

More CSS joy - getting elements to stack from the bottom up?

  • 04-08-2007 11:22pm
    #1
    Registered Users, Registered Users 2 Posts: 2,966 ✭✭✭


    So, I have a container with three elements in it, and I want them all to stack on top of each other, basically aligned on the bottom right corner. I've used an absolute position to get the lowest one in the right place, but after that I can't do anything - because the size of the elements may change (content, text size etc).

    Am I missing something obvious here?

    Or should I be choosing a different design that aligns to the top instead...? :(


Comments

  • Registered Users, Registered Users 2 Posts: 3,594 ✭✭✭forbairt


    container > bottom right container > 3 elements within it ??


    that do the trick for you ? or have you got an example of what you want ...


  • Closed Accounts Posts: 1,200 ✭✭✭louie


    if you want them on top of each other just put it into divs, but if you want them beside each other use float:left


  • Registered Users, Registered Users 2 Posts: 2,966 ✭✭✭elven


    I'm using a float left and a float right, and I need to align a block in whatever possible fashion in the bottom right of that left float.


  • Registered Users, Registered Users 2 Posts: 3,594 ✭✭✭forbairt


    elven wrote:
    I'm using a float left and a float right, and I need to align a block in whatever possible fashion in the bottom right of that left float.


    As I said before ...
    #bottomright {
      float: right;
      position: absolute;
      bottom:0; 
      right:0;
      padding:0;
      margin:0;
    }
    
    
    <div id="bottomright">
    <div>test 1</div>
    <div>test 2</div>
    <div>test 3</div>
    </div>
    
    

    That is what you want isn't it ? .. container div ... and then 3 elements within it ... ?

    If not if you post up a link we can sort you out


  • Closed Accounts Posts: 1,200 ✭✭✭louie


    elven wrote:
    I'm using a float left and a float right, and I need to align a block in whatever possible fashion in the bottom right of that left float.

    use a div container for the left and right and set autoscroll to true giving a fix height.
    below the container set the footer div with your image as background.


  • Advertisement
Advertisement