Gmail

  • Kill Gmail App Zooming:

    Stop Gmail app from zooming text

    style="min-width:600px;"
    

    -courtesy of Chris Wise

  • Interactive Email con’t - Hover!:

    Hover effect works on these clients:

    Gmail:

    * [lang~="x-selector"]:hover { }
    

    Outlook Web:

    .class:hover
    

    Yahoo! Web:

    .class:hover
    

    -courtesy of Justin at FreshInbox

  • Interactive Email in Gmail:

    No Class or ID selector support

    Use lang as selector with "x-" prefix

    * [lang~="x-selector"] { }
    
    <div lang="x-selector"></div>
    

    -courtesy of Justin at FreshInbox

  • Fix mailto in gmail

    gmail strips subject and body from mailto links

    Use lowercase for subject anbd body attribute

    <a href="mailto:some_email@email.com?subject=A Subject&body=A Body">email@email.com</a>
    

    -courtesy of SV