Zadanie 8. , ,

Wskaż zapis stylu CSS formatujący punktor list numerowanych na wielkie cyfry rzymskie, a list punktowanych na kwadraty.
  1. ol { list-style-type: upper-alpha; }
    ul { list-style-type: disc; }
  2. ol { list-style-type: square; }
    ul { list-style-type: upper-roman; }
  3. ol { list-style-type: disc; }
    ul { list-style-type: upper-alpha; }
  4. ol { list-style-type: upper-roman; }
    ul { list-style-type: square; }
D