Your HTML format is not valid, as <li>
can only be used inside of <ol>
or <ul>
tags. If you are trying to remove the white space before the <li>
, you can use the following methods.
li { **display:flex;** }
li{
display:flex;
}
<h1 style="display: block;margin: 0;padding: 0;color: #000000;font-family: Helvetica;font-size: 26px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;"><span style="font-size:28px"><strong><span style="color:#96c11f">Why now</span></strong></span></h1>
<li><span style="font-size:16px">Increase in buyers looking for businesses over the Christmas period.</span>
</li>
<li style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;"><span style="font-size:16px">More sales agreed in January so be on the market in time.</span>
</li>
<br>
or li { display:block; float:left; }
li{
display:block;
float:left;
}
<h1 style="display: block;margin: 0;padding: 0;color: #000000;font-family: Helvetica;font-size: 26px;font-style: normal;font-weight: bold;line-height: 125%;letter-spacing: normal;text-align: left;"><span style="font-size:28px"><strong><span style="color:#96c11f">Why now</span></strong></span></h1>
<li><span style="font-size:16px">Increase in buyers looking for businesses over the Christmas period.</span>
</li>
<li style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;"><span style="font-size:16px">More sales agreed in January so be on the market in time.</span>
</li>
<br>