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.