In the case where margin-left is negative, the outer margin of ul is negative, but why doesn't the left outer margin of li work?

https://codepen.io/niusz/pen/.
look at the leftmost red element, it clearly has margin-left: 20px, but can"t see it?

Mar.10,2021

.ct > ul {
margin-left:-20px;
}
this and margin-left:20px offset


margin-left:20px is on li
margin-left:-20px is on ul, so it can also offset?

Menu