Centre text in relation to image horizontally

Hi,

Is there a way to style text in the centre horizontally next to an image? If the image covers an odd number of lines the text can be centred. If an even number, it cannot. I need a simple way to have text appear next to an image centred.

Image Here Covering Line 1
Image Here Covering Line 2
Image Here Covering Line 3 Text appears in centre horizontally
Image Here Covering Line 4
Image Here Covering Line 5

Image Here Covering Line 1
Image Here Covering Line 2
Image Here Covering Line 3 Text does not appear in centre horizontally
Image Here Covering Line 4

Any ideas,

Matthew.

You can do something like this:

HTML

<p><img src="image.gif">This is the text</p>

CSS

p img {vertical-align: middle;}

Yes - this works well. Thanks for your help Ralph M.

Matt.