Posts: 2,536
Location: Western Maryland
|
Truly,
To make it the background of a table cell, for example:
HTML Code:
<td style="background: url('Images/mybackground.jpg');"><span style="font: bold 10pt Arial; color: rgb(255,240,240);">This is my text that I want to appear over the image.</span></td>
The only thing about this solution is that you need to make sure you don't put so much text there as to cause the table cell to expand beyond the size of the image in the background.
As for dictating the coordinates of text to appear on a page, yes, you can with absolute positioning:
HTML Code:
<div style="position: absolute; top: 200px; left: 140px;">My text will appear 200 pixels down and 140 pixels over.</div>
But CSS-P (CSS positioning) is a complex topic and so you need to read up a bit on that. It's not always as simple as that, particularly if you are dealing with child blocks, etc.
Hope this helps.
__________________
—Kyrnt
|