Forums

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

Home Forums CSS Box float problem

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #43348
    constanstan
    Member

    Hi everybody,
    I’ve an obscure problem concerning css float, on my page : http://www.constantstuff.com/hub/
    All my blocks have same height and width (I’ve checked with firebug).
    In firefox, if you scroll down, some blocks don’t want to float, like if the text blocks (yellow) where higher than the other ones?

    Thanks in advance for your help.

    #128020
    Merri
    Participant

    .col indeed has a padding if 0.5% for both sides which could cause issues. The main issue however is caused by the div.dummy that is in the text blocks. It apparently has a percentage height that might’ve been correct for some other font, but is now incorrect for the new one. So you’d need to adjust that. It would be better though if the .txt blocks didn’t have to be absolutely positioned and since all your images use a specific height why not just go ahead and give all blocks the same height in pixels? That way you don’t need absolute positioning for the .txt block, you can throw div.dummy away and cleanup syntax to something that is a bit easier to follow.

    #128023
    Paulie_D
    Member

    >.col indeed has a padding if 0.5% for both sides which could cause issues

    Merri is referring (I think) so something I posted and then deleted as I couldn’t think why it should affect anything.

    However, I think he might have nailed it with the rest.

    #128025
    constanstan
    Member

    Woaw, I didn’t imagine that, you’re totally right, the .5% padding causes that.
    What can I do if I want to keep fluid column ?
    What is the link with the text boxes ? Do I have to change something in the text-boxes css to make it works ?

    Ty!

    #128027
    Paulie_D
    Member

    >you’re totally right, the .5% padding causes that

    Not sure it does….it shouldn’t with border-box set.

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