Testing Sec 9.3 of CSS2 Specification



The rules applied are "#id1 {position: static}",
#id2 {position: relative}
#id3 {position: absolute}
#id4 {position: fixed}
#id5 {position: inherit}
@media screen {h3#first {position: fixed}}
@media print {h3#first {position: static}}

This paragraph should be shifted from its position according to static.

This paragraph should be shifted from its position according to relative.

This paragraph should be shifted from its position according to absolute.

This paragraph should be shifted from its position according to fixed.

This paragraph should be shifted from its position according to inherit.

This h3 heading should have position static if media is print, and position fixed if media is screen.