I have some problems with Outlook on Windows 10 (I don't know for the older ones). I am aware of the CSS compatibility problems on newsletters but I am not making any progress.
My inline styles work. The ones in class too. But not those with a succession of classes or tags.
Example :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>{{title}}</title>
<style type="text/css">
/* WORKS */
.title {
color: green;
}
/* DOESN'T WORK */
.news .title {
color: red;
}
</style>
</head>
<body>
<table>
<tbody>
<tr class="news">
<td class="title">
My title.
</td>
</tr>
<tbody>
</table>
</html>