Search code examples
htmlcssemailgmail

CSS draw down arrow for email (mail.google.com issues)


In my email html template I need this arrow enter image description here

Don't offer use embedded image, it must be css ...


Solution

  • Cant guarantee that margin auto will work in Google mail but you can try adding a container div

    <tr>
        <td>
             <div class="container">
                <div class="top"></div>
                <div class="bottom"></div>
            </div>
        </td>
    </tr>
    

    CSS

    .container{
        width:48px;
        margin:auto;
    }
    
    .top{
        margin-left: 17.5px;
        min-height:24px;
        background:#bedfd0;
        width: 16px;
    }
    
    .bottom{                        
        border:solid transparent;  
        border-width:26px;
        border-top:31px solid #bedfd0;
        border-bottom-width: 0;
    }
    

    Jsfiddle update here: http://jsfiddle.net/b0vryojq/6/