Slide 24
Slide 24 text
No shorthand CSS
.example {
/* This works across all clients */
background-color: #ff0000;
background-image: linear-gradient(#111111, #222222 50%, #111111);
/*
But the same as shorthand does not
because Outlook does not understand linear-gradient, so
ignores all values for background.
*/
background: #ff0000 linear-gradient(#111111, #222222 50%, #111111);
}