HTML <ul> tag

Op deze pagina:

Voorbeeld:


<ul>
  <li>Appel</li>
  <li>Aardbei</li>
  <li>Druif</li>
</ul>

De <ul> tag geeft een niet-genummerde lijst.

Standaard css voor het <ul> element


ul {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

 

Verwante artikelen