I have html table which I am using it as body of email, Problem is that Table font size what I have set in CSS doesn't reflect the same in outlook email.
Any Idea how to do this? Have font size set to table?
Usin开发者_运维技巧g php
Make sure you apply inline CSS only.
<table style="font-size: ....">
if that doesn't work - not sure at the moment whether font-size inherits through a table's elements - set the font-size
to the td
element:
<td style="font-size: ....">
精彩评论