I would like to put one word of text in the extreme upper left corner of a page, and another word in the extreme upper right-hand corner, with both words on the same line, and nothing but blank space between them. Is there a way to do this using HTML and CSS? Thank you
Thanks. I'm trying to make it work now, but the second word (topright) doesn't show for me. I think the problem is that I'm already using "p' for my main content with a different style definition. Also, I'm not familiar with "float". But I keep working on it, and should get it eventually. Thanks again
You could apply a id to that P tag, and then apply all the styles that are on you current P to p#id. If that makes sense. Or you could use span tags and wrap them in a block level element such as a div. Here is that.
I got it working now. I used "q" instead of "p", and I also had to change "49%" to "45% (to adjust for a special border that I already had). I'm going to get more info about that float tag -- It looks interesting. Thanks again. I really appreciate the time you gave up to help me.