Click to See Complete Forum and Search --> : Making one large sigle celled table.


RUNEMASTER
09-14-2005, 06:52 PM
I am experimenting with tables.Wonder how to make one very large single celled table.


I have some code to show,but its a small version of what I am looking for.Id like to know what code defines the volume of the cell or cells?

Additionally how to make the cell borderless with color.I mean imagine one large red cube in the broser.Guess thats my second question.




..........................................

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">

<html>

<head>

<title>marys lamb</title>

</head>





<body>

<table border="2" cell padding="3" cell spacing="3" width=75% align="center">

<tr>
<td bgcolor=red>mary column 1 cell 1</td>

</tr>





Thanks.

muneepenee
09-14-2005, 07:19 PM
<td height=600 width=800>

Charles
09-14-2005, 07:22 PM
See http://www.w3.org/TR/html401/struct/tables.html .

RUNEMASTER
09-14-2005, 07:34 PM
Thanks guys that seemed quick.I was looking for that."Be true to yourself".I like that.

NogDog
09-14-2005, 08:02 PM
Note that if you are looking for ways to visually lay out your page (as opposed to the presentation of tabular data within a page) you should be looking at using CSS, not tables.

RUNEMASTER
09-14-2005, 08:59 PM
Thanks. I just started studying an HTML training cd. Guess Ill study both at same time so i dont miss anything. Thanks again.