If you want to disable the markers in an unordered list and also move the text to the left, what would be the correct code?
ul { list-style: none left; }
ul { list-style-type: none; text-align: left; }
ul { list-style: off; align: left; }
ul { marker-type: none; text-position: left; }