Re: "::inside" Pseudo-Element

Daniel Schierbeck wrote:
> As you can see, "::ouside" won't do what I want here (assuming it's a 
> bad idea to generate a pseudo-element *outside* the BODY element).

That's probably not a good assumption, but in any case....

>  body::inside {
>    width: 500px;
>    margin: 50px auto;
>  }

Why not:

body {
   width: 500px;
   margin: 50px auto;
}

?

-Boris

Received on Saturday, 31 December 2005 16:46:48 UTC