Bug: width on BODY is ignored

width applies to block-level elements and so it does to BODY, see width property.

Styles:


  BODY { width: 200px; }

  P.example {

    width: 100%;

    background: silver;

    border: 5px black solid;

  }

Example:

<P CLASS="example">

this box (and the whole BODY) should not exceed 200px width

</P>