View Single Post
Old 01-06-2006, 08:04 AM   #3 (permalink)
digby
Crazy
 
Location: Ahh, the lovely South
Ah. I had tried the <p> tags around the paragraph, but it didn't work. That link however gave me what I was looking for:

Code:
<div align="right">
<table border="1px" width="500">
	<tr>
		<td align="left" width="250"> Cell One</td>
		<td align="left" width="250"> Cell Two</td>
	</tr>
	<tr>
		<td align="left" width="250"> Cell Three</td>
		<td align="left" width="250"> Cell Four</td>
	</tr>
</table>
</div>
That's what I wanted. Thanks!

A follow-up question: Is that usage of the <div> tag allowed in XHTML, or should I have defined that in CSS?
__________________
mmmm.... pudding

Last edited by digby; 01-06-2006 at 08:07 AM..
digby is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73