The list-style-position
property defines the position of the markers of the list items.
list-style-position: inside | outside;
.div-1 > li{
list-style-position: inside;
}
.div-2 > li{
list-style-position: outside;
}
inside: displays the marker inside the items list box.
outside: displays the marker outside the items list box.