The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Table help

3 posters

Go down

In progress Table help

Post by angel_of_night March 14th 2012, 4:15 pm

Hello.

Can someone help me to teach how to make a table like this:

Table help Tablehelp
Instead of being on a row, you have a column then 2 cells.

Thanks in advance.
angel_of_night
angel_of_night
Forumember

Female Posts : 565
Reputation : 10
Language : portuguese

Back to top Go down

In progress Re: Table help

Post by Sir Chivas™ March 14th 2012, 4:30 pm

Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6965
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

Back to top Go down

In progress Re: Table help

Post by angel_of_night March 14th 2012, 4:35 pm

Nope. I went to that website already.

I know how to make
a bc
de f
g h i

But I dont know how to make just 1 column and 2 cells for the same column.
angel_of_night
angel_of_night
Forumember

Female Posts : 565
Reputation : 10
Language : portuguese

Back to top Go down

In progress Re: Table help

Post by Nera. March 14th 2012, 6:18 pm

Hi,

Is this what you want?

http://www.admincentar.net/mybb/misc.php?page=tabelecol

Code for the first example:

Code:
<table border="1">
<tr>
<th>Name</th>
<th colspan="2">Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>

Code for the second example:

Code:
<table border="1">
<tr>
<th>First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</table>
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum