Forums

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

Home Forums CSS Safari, Chrome vs Firefox

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

    Hello
    How can have styles like

    Code:
    border-top-left-radius

    but firefox doesnt support these and needs something like that

    Code:
    -moz-border-radius-topleft
    #78251
    Jerm993
    Member

    I think what your asking is can you only have say one or two corners with a border radius? The answer, Yeah you can have any of the four corners be rounded in any way you want like this:

    Code:
    -moz-border-radius: 10px 0px 0px 0px;
    -webkit-border-radius: 10px 0px 0px 0px;

    the first being top left, then top right, bottom right, and bottom left. Around the clock like other shorthand.

    #78315
    dyrer
    Member

    thanks

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