• Jack C

    Nice work Elliot! I’ll have to pick up that issue.

  • http://twitter.com/nickwhiteacre Nick Whiteacre

    Great article Elliot

  • http://www.elliot-ross.co.uk/ Elliot Ross

    thanks guys!

  • http://yannick-mireur.blogspot.com Yannick Mireur

    Hello,
    An idea for how to make an element appear ONLY in mobile e-mail clients?
    I tried:
    @media only screen and (min-device-width: 350px) {
    .element {display: none !important;
    }
    }
    But many e-mail clients don’t support “display-none”…

    Thx!

    • http://www.facebook.com/ting.sao Ting Sao

      I don’t know, but did you try:

      display: hidden; ?

      OR

      width: 0px;
      height: 0px;
      overflow: hidden; ?

      I would guess (from my limited experience) that z-index doesn’t work either….

      J