Preset pour les listes
Pour les structures basées sur des listes, tels que les navigations, lien rapides ou les langues, il est possible d'appliquer des styles css fréquemment utilisés à l'aide d'un preset
preset="none"
N'applique aucun style prédéfini
preset="vertical"
a { display: block; }
a { text-decoration: none; }
a { text-decoration: none; }
sans clear-after
preset="horizontal"
li { float: left; }
a { display: block; }
a { text-decoration: none; }
a { display: block; }
a { text-decoration: none; }
avec un clear-after
preset="horizontal-left"
{ float: left; }
li { float: left; }
a { display: block; }
a { text-decoration: none; }
li { float: left; }
a { display: block; }
a { text-decoration: none; }
sans clear-after
preset="horizontal-right"
{ float: right; }
li { float: left; }
a { display: block; }
a { text-decoration: none; }
li { float: left; }
a { display: block; }
a { text-decoration: none; }
avec un clear-after
preset="horizontal-center"
{ text-align: center; }
li { display: inline-block; }
a { display: block; }
a { text-decoration: none; }
li { display: inline-block; }
a { display: block; }
a { text-decoration: none; }
sans clear-after
Editer
