table - Display unknown new line in HTML -


i'm using simple html code

<html>      <head>         <meta name='viewport' content='width=device-width; initial-scale=1.0;          maximum-scale=1.0; user-scalable=0;' />         <meta name='apple-mobile-web-app-capable' content='yes' />     </head>      <body>         <div align='center'>             <img src='data:image/png;base64,base64_code' />         </div>         <br/>         <table>             <tr>                 <td>                     <br/>april 2, 2013                     <br/>xxxxxxx                     <br/>                     <br/>2xxxxx xxxxxxx                     <br/>xxxxxxxx                     <br/>                     <br/>hello xxxx,                     <br/>                 </td>                 <br/>                 <td>                     <br/>                     <img src='data:image/jpeg;base64,base64_code' />                     <br/>                 </td>                 <br/>             </tr>             <br/>             <tr>                 <br/>                 <td colspan='2' align='center'>                     <br/>                      <h2><font color='blue'>xxxxxxxxxxx</font></h2>                      <br/>                 </td>                 <br/>             </tr>             <br/>             <tr>                 <br/>                 <td>                     <br/>xxxxxxxxxxxx                     <br/>                     <br/>xxxxx xxxxx                     <br/>                     <br/>xxxxxxx                     <br/>                     <br/>xxxxxxxx                     <br/>                     <br/>xxxxxx                     <br/>                     <br/>                     <br/>xxxx                     <br/>xxxx                     <br/>xxxxxx                     <br/>                 </td>                 <br/>                 <td>                     <br/>                     <img src='data:image/jpeg;base64,/9j/                +691//2q==' />                     <br/>                 </td>                 <br/>             </tr>             <br/>         </table>     </body>  </html> 

but when display, have unknown new line:

i use inspect element of chrome , see that

enter image description here

i don't know reason! how can fix it? much!

the content model of tr elements "zero or more td or th elements".

since br element not allowed there, browser attempting recover error moving before table.

to solve problem, write valid html.


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

c# - Using multiple datasets in RDLC -