html5 - How do you skip a <td> tag in HTML -
i want know how skip tag in html5.0. mean literally, without css. instead of empty box, want filled in, not blank. help appreciated
you can utilize colspan or rowspan.
<table> <tr> <td colspan="2"> header </td> </tr> <tr> <td> text </td> <td> text </td> </tr> <tr> <td> text </td> <td> text </td> </tr> </table>
html html5 charts internet-explorer-10
No comments:
Post a Comment