Forum Moderators: mack
I think you'll probably have problems with the 'outset' value. AFAIK support for anything but 'solid' is very slim.
You can also use the shorhand for border like this:
border: 10px solid #000000;
You'll have to set the margins and padding on the body to 0 so that it works across most browsers the way you probably want it. Your whole body rule would look somthing like this:
body {
margin: 0;
padding: 0;
border: 10px solid #000000;
}
Nick
Nick