Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS div… bottom ?

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #36163
    dalecooper
    Member

    Hi guys, I have a simple div with lists inside it (ul (li)) displayed as inline block and I would like it to be place at the bottom of the page, centered. Even though it is inline, the vertical-align function won’t work (or I used it badly, maybe).

    Do you have any idea how to achieve this properly, without tweaking ?

    (issue solved with absolute values)

    #94813
    timmey
    Member

    well i dont know your markup, but maybe this can help:


    #footer {
    position:absolute;
    width:100%;
    text-align:center;
    bottom:0;
    }
    #94901
    dalecooper
    Member

    Yes, thanks, that’s what I used and it works now !

    Thank you for your help :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.