Making Columns inside a cell in html table -


i have searched around , havnt found anythign define. have alot of information need put in single cell in table. there way can format cell has own columns?

something simlular im trying at

c1........ | c2 .........| ..................c3............................|

..value...|..value... | horse:"value"....unicorn:"value" |

............................. | dog:"value".......hippie:"value".. |

............................. | cat:"value"........hispster:"value"|

............................. | title:"value".......yoga:"value"... |

............................. | t-rex:"value"....me:"value"...... |


c1........ | c2 .........| ..................c3............................|

..value...|..value... | horse:"value"....unicorn:"value" |

............................. | dog:"value".......hippie:"value".. |

............................. | cat:"value"........hispster:"value"|

............................. | title:"value".......yoga:"value"... |

............................. | t-rex:"value"....me:"value"...... |

then have cascade down c3 more data field? shows 2 rows in table. sorry crude

thanks suggetions!

what you'll want put table inside cell. link below explains pretty well. basically, code structured this:

<table border="3" cellpadding="10" cellspacing="10"> <td> <table border="3" cellpadding="3" cellspacing="3">            <td>2nd table</td>            <td>2nd table</td>            <tr>            <td>2nd table</td>            <td>2nd table</td>            </tr>            </table> </td> <td> cell next 1 has smaller table inside of it, table inside table.</td> </table> 

html goodies


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -