I have created a HTML email that displays fine in all the email clients I have tested it in, expect for Hotmail. Hotmail for some reason, is stripping my css border styles and not displaying them.
I have included part of the code that has the border on it:
<td bgcolor="white" width="121" style="background: #ffffff; height: 25px; border-bottom: 1px solid lightgray; border-bottom: 1px solid #dcdcdc;">TEST DATA</td>
I have put the styling on the TD, but it is not showing up. I have also tried the below code, but this does not work either:
<td bgcolor="white" width="121" style="background: #ffffff; height: 25px; border-bottom: 1px solid; border-color: rgb(220, 220, 220);">TEST DATA</td>
Does anyone know how to get CSS borders to display in Hotmail as the are displaying fine in other email clients.
Any help would be gratefully recieved.