Search code examples
htmlhtml-email

How would i change the background colour of a bullet point list without changing the colour of the text?


How would i make the background of this bullet point list a different colour i can't seem to get it to work? I want to add it to the code below:

<ul>
    <li>&nbsp;2 different sizes (Small &amp; Large).</li>
</ul>

<div>&nbsp;</div>

<ul>
    <li>2 different widths (265mm &amp; 420mm).</li>
</ul>

<div>&nbsp;</div>

<ul>
    <li>4 different head rest mounts.</li>
</ul>

<div>&nbsp;</div>

<ul>
    <li>Orderable replacement pads.</li>
</ul>

Solution

  • This might help you.. (Not sure why you have multiple ul tags)

    <ul style="background-color: aliceblue;">
        <li>2 different sizes (Small &amp; Large).</li>
        <li>2 different widths (265mm &amp; 420mm).</li>
        <li>4 different head rest mounts.</li>
        <li>Orderable replacement pads.</li>
    </ul>