How to remove td border with html? -


html

<table border="1">   <tr>     <td>one</td>     <td>two</td>   </tr>   <tr>     <td>one</td>     <td>two</td> </tr> </table> 

this output borders this

+---+---+ |   |   | +---+---+ |   |   | +---+---+ 

but display border in table not td this

+--------+ |        | |        | |        | +--------+ 

how can html markup. (no css / no inline styles)

in cases need remove td borders , td border display this:

+---+---+ |   |   | +---+   | |   |   | +---+---+ 

simple solution end keep table border , insert table in outer table.

<table border="1"> <tr>     <td>         <table border="0">             <tr>                 <td>one</td>                 <td>two</td>             </tr>             <tr>                 <td>one</td>                 <td>two</td>             </tr>         </table>     </td> </tr>  </table> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -