hi guys im trying to make a table in a website by using notepad/.net but im not able to make horizontal column.
number of columns are increasing in a vertical order.
here is the codeing im using
- <style>
- table, th, td {
- border: 1px solid black;
- border-collapse: collapse;
- }
- th, td {
- padding: 5px;
- text-align: left;
- }
- </style>
- </head>
- <body>
- <table style="width:100%">
- <tr>
- <th></th>
- <th></th>
- </tr>
- <tr>
- <td></td>
- <td></td>
- </tr>
- <tr>
- <td></td>
- <td></td>
- </tr>
- </table>
can anyone help me and tell me what im doing wrong
thanks