Netscape background-color Test

The embedded style declarations are:
BODY    {background: white;
        color: black;
        margin: 0 2em;
        }
.yellowbox {      border: none;
        background-color: yellow;
        }
.greenbox {      border: none;
        background-color: #88FF88;
        }
.redbox {      border: none;
        background-color: #FF8888;
        }
.bluebox {      border: none;
        background-color: #8888FF;
        }

The results of SPAN in P are:

(If no backgrounds are shown, re-load before proceeding)

This paragraph should have a yellow background.

This paragraph should have a green background.

This paragraph should have a red background.

This paragraph should have a blue background.

Results with inline keywords on P below:

<P STYLE="background: yellow">

<P STYLE="background: green">

<P STYLE="background: red">

<P STYLE="background: blue">

Results with inline keywords on DIV below:

<DIV STYLE="background: yellow">
<DIV STYLE="background: yellow">
<DIV STYLE="background: green">
<DIV STYLE="background: red">
<DIV STYLE="background: blue">

Results with inline border:

<P CLASS ="yellowbox"

<P CLASS="greenbox"

<P CLASS="redbox"

<P CLASS="bluebox"