list
Anglais [lɪst] US [lɪst]
n Liste, catalogue ; bord du tissu, extrémité du tissu ; liste étroite, inclure ; enregistrer dans la liste À l'intérieur
vi Listé sur la table
Troisième personne du singulier : listes Pluriel : listes Participe présent : listing Passé : listé Participe passé : listé
styleAnglais [staɪl] Américain [staɪl]
n. Way; style; apparence, goût
vt. Titre; forme pour...
vi. : styles Pluriel : styles Participe présent : style Style passé : stylisé Participe passé : styled
type
Anglais [taɪp] Américain [taɪp]n police de caractères (imprimée ou tapée) ; .type de
vt.& vi. typage vt. [Médecine] déterminer (type sanguin)... par type ; Troisième personne du singulier : types Pluriel : types Participe présent : typage Passé : typé Participe passé : typé
attribut CSS list-style-type syntaxe
Fonction : Définissez le type de marque d'élément de liste.
Remarque : Toute version d'Internet Explorer (y compris IE8) ne prend pas en charge les valeurs d'attribut "decimal-leading-zero", "inférieur-grec", "inférieur-latin", "supérieur-latin" , "arménien", "géorgien" ou "hériter".
Remarque : Tous les navigateurs prennent en charge l'attribut list-style-type.
attribut CSS list-style-type exemple
<html>
<head>
<style type="text/css">
ul.circle {list-style-type:circle}
ul.square {list-style-type:square}
ol.upper-roman {list-style-type:upper-roman}
ol.lower-alpha {list-style-type:lower-alpha}
</style>
</head>
<body>
<p>Type circle:</p>
<ul class="circle">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
<p>Type square:</p>
<ul class="square">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ul>
<p>Type upper-roman:</p>
<ol class="upper-roman">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
<p>Type lower-alpha:</p>
<ol class="lower-alpha">
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
</body>
</html>Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne

