To set markers in the form of dashes (-) in an unordered list (<ul>), what CSS code would you use?
-
<ul>
ul { list-style: "-"; }
ul { list-style-type: "-"; }
ul { list-style-type: '-'; }
All of the options are correct