im new to using tables and what im trying to do is have 1 large row with 1 large colomn under it on the left and 2 small rows on the right of it... any1 know how to do this? i honestly cant figure it out
im new to using tables and what im trying to do is have 1 large row with 1 large colomn under it on the left and 2 small rows on the right of it... any1 know how to do this? i honestly cant figure it out
and what exactly is a "large row" or a "large column"?
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
From the question, it sounds like you might mean something like this?
If so, the code used to create this is
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd"><html><head><style>
table {
width: 600px;
border-collapse: collapse;
}
#largeRow {
background-color: #fcc;
}
#column {
width: 400px;
background-color: #cfc;
}
#smallRow1 {
background-color: #ccf;
}
#smallRow2 {
background-color: #ff9;
}
</style></head><body><table><tr><th colspan="2" id="largeRow">This is the large row</th></tr><tr><td rowspan="2" id="column">This is the large column</td><td id="smallRow1">This is the first small row</td></tr><tr><td id="smallRow2">This is the second small row</td></tr></table></body></html>