Jump to content

HTML Table order..


Norman

Recommended Posts

Check out the rowspan attribute. I'll let you try to uncover how its used yourself, but just.... rowspan... search for that.

Link to comment
Share on other sites

Rowspan.. yup.. yes, ok, just rowspan!This is the code I was searching for:

<table border="1"><tr><td>Thank</td><td>you</td><td rowspan="2">Yea.. just.. just Rowspan!</td></tr><td>boen</td><td>robot</td></tr></table>

Link to comment
Share on other sites

By the way, there is a difference between a standard and a good practice. It is not good practice to use tables for layout, but it doesn't go against any standards, as it still uses perfectly valid HTML.

Link to comment
Share on other sites

I always use semantics when I talk. It's very hard not to.
So you always study the meaning of what you are saying when you say it? I would think that would be the harder way to communicate. :)
Link to comment
Share on other sites

<table border="1"><tr><td>Thank</td><td>you</td><td rowspan="2">Yea.. just.. just Rowspan!</td></tr><td>boen</td><td>robot</td></tr></table>

The above code does it and if you want like the same in your picture then you can use cellspacing on the table tag.

Link to comment
Share on other sites

Hi,I just wish you dont use tables for the structure of your page :wub: . Web Standards is the best way :mellow: .Complements \o/
Then, post the code for do that! :)
<table border="1"> <tr> <td>Thank</td><td>you</td> <td rowspan="2">Yea.. just.. just Rowspan!</td> </tr> <td>boen</td><td>robot</td> </tr> </table>

The above code does it and if you want like the same in your picture then you can use cellspacing on the table tag.

Yup, I know. Thanks!
I'm an English professor, for cryin' out loud. You have no idea what goes through my head. :)
Ok, my Dad, this mean for you that you will have a new student: me. LOL
Link to comment
Share on other sites

Why not to use tables for web structure??
Divs and CSS give you much finer control over structure. That's what they were designed for. Tables were designed to be used for spreadsheet-type data. In the early 1990s, when people first started designing creative websites, there was no tool for creative designs, so they adapted the table to that purpose. But that's all it was: an adaptation.
Link to comment
Share on other sites

Using tables for layout also will make pages render slower.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...