What CSS code would you use to have uppercase alphabetical markers in an ordered list (<ol>)?
<ol>
ol { list-marker: A-Z; }
ol { list-style: alpha-upper; }
ol { list-style-type: uppercase-alpha; }
ol { list-style: upper-alpha; }