Forums

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

Home Forums CSS Anythingfader Rounded Corners Using CSS

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #32473
    web2works
    Member

    Hi, I can’t seem to get the anything fader to work with rounded corners. I have tried adding the bellow to everything with overflow hidden although the images in the

  • wont display the rounded corners:
    	-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;-moz-border-radius-topright:6px;-webkit-border-top-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:6px;
#49298
chrisburton
Participant

That’s because your code is invalid. Border-radius does not work like that.

-moz-border-radius: 6px 6px 0 0;
-webkit-border-radius: 6px 6px 0 0;
-o-border-radius: 6px 6px 0 0;
border-radius: 6px 6px 0 0;
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.