You have to answer this question before its comments can be revealed, this way we won’t spoil the answer for you.
Web Design
CSS: I have a simple document containing a long paragraph of text (P) with an image (IMG) placed roughly in the middle of the text. There are no styles in the document yet. I want to place the image 8 pixels higher than its normal, unstyled position – what should I add to the image’s ‘style’ attribute to achieve this?
position: relative; top: 8px;
top: -8px;
position: relative; top: -8px
position: absolute; top: 8px;