• A journey in to the digital
  • Global thought leaders
  • HTML browser support this ul padding-left" />
  • A journey in to the digital
  • Global thought leaders
  • HTML browser support this ul padding-left" />
  • A journey in to the digital
  • Global thought leaders
  • HTML browser support this ul padding-left"/>

    How to left align ul in edm?

    271 Views Asked by At

    HTML

    <ul style="padding-left:0;">
         <li>A journey in to  the digital</li>
         <li>Global thought leaders</li>
    </ul>
    

    HTML browser support this ul padding-left. So there is no issue in browser. But in Gmail that padding-left style not working. How to fix that issue.

    3

    There are 3 best solutions below

    0
    Akhila Prakash On

    try Float:left or give margin-right: % or padding-right: %;

    0
    Kurenai Kunai On

    Wrap each bullet in a table-cell using a pseudo element. 

    ul{
      display: table;
      margin-left: 0;
      padding-left: 0;
      list-style: none;
    }
    
    li{
      display: table-row;
    }
    
    0
    0m3r On
    <head>
    <style type="text/css">
    ul.c1 {padding-left:0;}
    </style>
    </head>
    <body>
    <ul class="c1">
    <li>A journey in to the digital</li>
    <li>Global thought leaders</li>
    </ul>
    </body>