Forums

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

Home Forums CSS How do I achieve a similar border effect as this site?

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

    Is this site’s main border an image? I can’t see any image in firefox.
    How does he do it?

    #101124
    TheDoc
    Member
    #main-content > .inside {
    position: relative;
    background: white;
    border: 8px solid transparent;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 8px rgba(0,0,0,0.3);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    border-image: initial;
    }
    #101122
    Roggers
    Member

    Oh wow!!! Thanks alot man Really appreciate it. And quick reply. Much Love!

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