79083363

Date: 2024-10-13 14:27:17
Score: 0.5
Natty:
Report link

have to tried to remove the different margin and padding in your css ?

if you didn't here is what I think could help you :

ol, ul {
list-style-position: inside; /* Aligns the bullet or number with the text */
margin: 0; /* Removes default margins */
padding: 0; /* Removes default padding */
}


li {
    margin: 0; /* Removes margin from list items */
    padding: 0.5em 0; /* Adjusts vertical spacing */
}

/* Optional: To further control spacing for nested lists */
ul {
    margin-left: 1.5em; /* Indent nested lists */
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tahoune Tarik