10 years later #1
3 changed files with 14 additions and 2 deletions
|
|
@ -106,6 +106,11 @@ dd {
|
|||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
}
|
||||
}
|
||||
|
||||
.list_dash {
|
||||
li {
|
||||
list-style: none;
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -389,9 +389,12 @@ dd {
|
|||
margin-left: 2em; }
|
||||
|
||||
ul li {
|
||||
list-style: square; }
|
||||
|
||||
.list_dash li {
|
||||
list-style: none;
|
||||
position: relative; }
|
||||
ul li:before {
|
||||
.list_dash li:before {
|
||||
content: "_";
|
||||
position: absolute;
|
||||
left: -1em; }
|
||||
|
|
|
|||
|
|
@ -79,7 +79,11 @@
|
|||
<p>Text bekommt durch Listen besondere optische wie auch inhaltliche Struktur. Es gibt ungeordnete <code><ul></code> und geordnete Listen <code><ol></code> sowie Beschreibungslisten <code><dl></code>. Die beiden ersten Varianten beinhalten das Listenelement <code><li></code>. Beschreibungslisten beinhalten jeweils das Paar von Ausdruck <code><dt></code> und Beschreibung <code><dd></code>. Im Folgenden eine Liste der Listen in ihrer Ausgangskonfiguration:</p>
|
||||
<ul>
|
||||
<li>Ungeordnete</li>
|
||||
<li>Liste</li>
|
||||
<li>Listen</li>
|
||||
</ul>
|
||||
<ul class="list_dash">
|
||||
<li>Verschiedener</li>
|
||||
<li>Art</li>
|
||||
</ul>
|
||||
<ol>
|
||||
<li>Geordnete</li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue