The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
How do I make like this table
Hello,
How do I make like this table Not content Only table _______________________ |______________________| |______________________| |___|_____|_____|______| |___|_____|_____|______| |______________________| Like... Regards |
#2
|
|||
|
|||
HTML Code:
<TABLE> <TR> hello <TD>row one</TD> <TD>row 2</TD> <TD>row 3</TD> </TR> <TR> <TD></TD> <TD></TD> <TD></TD> </TR> <TR> <TD></TD> <TD></TD> <TD></TD> </TR> <TR> <TD></TD> <TD></TD> <TD></TD> </TR> </TABLE> HTML Code:
Tables are a powerful but underutilized aspect of HTML. You use three key table tags: <TABLE> <TR> <TD> And of course the corresponding: </TABLE> </TR> </TD> (The above tags with the "/" represent that the corresponding tag is being closed. So that means that the <TABLE> <TR> and <TD> tags end wherever the closing tag is inserted.) <TABLE> Starts the table. You don't specify how many rows and columns it has. Instead, you use <TR> to start each new row. (Guess what? <TR> stands for Table Row.) Then you use <TD> to create each cell you want in that row. (And what does <TD> stand for? Ta da, of course. It's an abbreviation for Table Data.) You can have as many cells as you want within a row, and you don't need to have the same number of cells in every row in the table. Many properties are available to manipulate the table appearance. You can set the background color, justification for cells. And whether lines are drawn between rows and colums to demarcate cells. <TABLE WIDTH=90% BORDER=0> This tag above goes with the <TABLE> tag. Instead of using the closing bracket ( this one > ) add the following information to define the width of the table. <img src="img3.jpg"> The above image tag is used to place images with in a <TD> row. Example: <TD ALIGN="CENTER" WIDTH=35%> <img src="img3.jpg"></TD> Adding color to a table data cell: ( <TD> ) <TD bgColor=FF0000> </TD> Adding Font Size and Font Color in a table data cell: <TD><FONT SIZE="2" COLOR="#6699FF">The text goes here.</FONT></TD> |
#3
|
||||
|
||||
Lines in the table does not, for vB4.0.0
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|