Is there a way to use margin-left:20px;
to move a bullet point list on my webpage 20px inwards?
<li>• Service level agreements to match your needs from next business day response to a two hour fix</li>
<li>• 24x7x365 service coverage</li>
<li>• Dedicated client management and UK based service des</li>
<li>• Network of fully qualified engineers and strategic stock locations</li>
I added the style to the li
tag, which worked well for the list but also affected the navbar at the top of the page since it also uses li
.
I attempted using <span>...</span>
around the list with the desired style, but it only moved the top line inward.
Avoiding adding a class
or ID
to each <li>
was important for maintaining simplicity in nudging lists over.
Any suggestions would be appreciated. Thank you!