html - TD taking up entire width of row -


i need set html table email in each column has set width.

the left column image , right have text. have set td width td renders 600px wide no matter what.

the email can viewed here

here code

<!doctype html> <html> <head>     <meta charset="utf-8">     <meta name="description" content="fitzgerald description">     <meta name="viewport" content="width=device-width, initial-scale=1">     <title>         fitzgerald email     </title> </head> <body bgcolor="#ffffff" style="margin:0; padding:0; width:100% !important; background-color:#f8f6f2; font-family:calibri, 'helvetica neue', helvetical, arial, geneva, clean, sans-serif;"> <table bgcolor="#ffffff" align="center" border="0" cellpadding="0" cellspacing="0" style="width:600px; max-width:600px; margin:0 auto 0 auto;" width="600">     <tbody>         <tr>             <td align="center" style="text-align:center;" width="600">                 <img align="none" alt="fitzgerald header" border="0" src="http://i.imgur.com/mlerooa.jpg" style="width: 600px;" width="600">             </td>         </tr>         <tr>             <td width="244">             <img align="none" alt="fitzgerald pictures" border="0" src="http://i.imgur.com/nn93sj7.jpg" style="width:244px;" width="244">             </td>             <td width="356">             <p style="font-size:18px; color:##71032d;">                 going, going ...             </p>              </td>         </tr>         <tr>             <td align="center" width="600">                 <div style="font-size:12px; color:#9d9d9c">                 288 macon ave. | asheville, north carolina 28804 | 828-251-1140 | <a href="thefitzgeraldatgrovepark.com" style="color:#9d9d9c; text-decoration: none">thefitzgeraldatgrovepark.com</a>                 </div>             </td>         </tr>         <tr>             <td align="left" width="600">                 <p style="font-size:12px; color:#9d9d9c; margin-left:18px; margin-right:18px;">                 sales beverly-hanks &amp; associates, licensed in north carolina. not offer sell residents of state or province in legal requirements have not been fulfilled. offer void prohibited law. features, services, amenities, descriptions , other information set forth in communication subject change @ time without notice. features, services, amenities , other privileges of owners of residence @ fitzgerald limited included in purchase agreement , declaration of condominium fitzgerald condominium. mandatory dues, assessments, fees , charges apply residences @ fitzgerald in connection services, features , amenities described herein, contact fitzgerald sales professional details. depictions include amenities , furniture in model homes not included in sale of residence @ fitzgerald.                 </p>             </td>         </tr>         <tr>             <td align="center" width="600" height="10"></td>         </tr>     </tbody> </table> </body> </html> 

you can use style="display:inline-block" in case , use float:left leo abraham has stated.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -