Click to See Complete Forum and Search --> : How do I do this?


papa_face
02-24-2007, 10:18 AM
Hello,
Can someone tell me how I would do this:
http://img365.imageshack.us/img365/294/examplexn8.jpg

Thanks :)

Jeff Mott
02-24-2007, 10:47 AM
Something along the lines of . . .<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html lang="en-us">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<title>Some Text Here</title>
<style type="text/css">

#Some-Text-Here { border: 1px solid black; position: relative; width: 7em }
#Some-Text-Here .P-1 { margin: 0; padding: 1em 0 0 0 }
#Some-Text-Here .P-2 { font-size: x-small; margin: 0; padding: 0; position: absolute; top: 0; right: 0 }

</style>
</head>

<body>
<div id="Some-Text-Here">
<p class="P-1">Hello, World!</p>
<p class="P-2">World? &hellip; Hello?</p>
</div>
</body>

</html>

papa_face
02-24-2007, 11:09 AM
Thanks that worked great.