If you want to use an image as a marker and also set its position to inside, what would be the correct CSS code?
ul { list-style-image: url('icon.png'); list-style-position: inside; }
All of the options are correct
ul { list-style-position: inside; list-style-image: url('icon.png'); }
ul { list-style: url('icon.png') inside; }