Forums

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

Home Forums CSS CSS3 bug(?) in Google Chrome

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #34555
    davidboiss
    Participant

    Hi,

    On the page listed below, i try to keep the rounded corners on the box, but when the animation starts in chrome, the rounded corner disapear, I would like to know if anyone else has got that problem before?

    http://www.mamanfournier.acolyte.ws/menu-broken

    Thanks.

    #88386
    TheDoc
    Member

    Working fine for me in Chrome.

    #88392
    Ampitere
    Participant

    Working fine in Chrome as well.

    #88393
    davidboiss
    Participant

    Ok, seems there is a bug in webkit, I partially solved the issue by embedding rounded corners into background images.

    #88394
    davidboiss
    Participant

    I can set it back to how it was with css3 rounded corners so you can see the result, give me a sec…

    #88395
    davidboiss
    Participant

    http://www.mamanfournier.acolyte.ws/menu-broken -> CSS3, broken on hover with chrome.

    http://www.mamanfournier.acolyte.ws/menu -> No CSS3, my solution was to add rounded corner to background images.

    #88396
    TheDoc
    Member

    Aaahhh, I see I see. Hmmmm… off the top of my head I can’t think of anything to fix that.

    #88397
    davidboiss
    Participant

    Thanks for taking a look! but i think that replacing the images with corners into them is a viable solution for now!

    #88433
    clokey2k
    Participant

    It looks like a z-index / positioning issue, I don’t know what the behaviour should be within the CSS3 spec. If you apply a border to the ‘#menu-nav2’ you can see the line it should trace, but your absolutely positioned items are ‘above’ it… Sucks;

    I had an idea:

    #menu-nav2:after {
    content: "";
    position: absolute;
    top: -4px; //to shift the border out
    left: -4px; //may need to be tweaked
    right: -4px;
    bottom: -4px;
    border: 8px solid white;
    border-radius: 16px;
    z-index: 1000; //counteract parent z-index
    }

    But it breaks the entire functionality of that menu :(
    I’m stumped.

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