Nicole M.: noch eine Frage: Bullets nicht square in NC

Hallo,

ich habe im Self-HTML gelesen, dass ich die Bullets (ul-Tag) sqare machenen lassen kann. Siehe ganz unten.

<style type="text/css">
  <!--
/* Formatvorlagen */

/* Überschrift 1 */
h1 { font-family:arial; font-size:18pt; font-weight:bold; color:#800040; }
/* Überschrift 2 */
h2 { font-family:arial; font-size:14pt; font-weight:bold; color:#800040; }
/* Überschrift 3 */
h3 { font-family:arial; font-size:12pt; font-weight:bold; color:#800040; }
/* Überschrift 4 */
h4 { font-family:arial; font-size:10pt; font-weight:bold; color:black; }
/* Standardtext */
p   { font-family:arial; font-size:11pt; color:black; }
/* Listenpunkt  */
    ul { ul list-style-type:circle }
    ul { ul list-style-type:square }
--------------------------------
Das macht mir aber IE und NC nicht. Habe ich vielleicht zu viele CSS zusammengelegt und mit den Kommentare verwurschtelt?

Kann ich überhaupt soviele CSS zusammenlegen?

Über eine Hilfestellung würde ich mich freuen.

Merci, Nicole

  1. <style type="text/css">
    h1 { font-family:arial; font-size:18pt; font-weight:bold; color:#800040; }
    h2 { font-family:arial; font-size:14pt; font-weight:bold; color:#800040; }
    h3 { font-family:arial; font-size:12pt; font-weight:bold; color:#800040; }
    h4 { font-family:arial; font-size:10pt; font-weight:bold; color:black; }
    p   { font-family:arial; font-size:11pt; color:black; }

    ul { ul list-style-type:circle }
        ul { ul list-style-type:square }

    richtig:

    ul { list-style-type:circle } /* O.K. */
         ul { list-style-type:square } /* Überschreibt erste Angabe */

    Nicht vergessen:
    </style>

    Joseph