Diese Seite (Version-1) wurde zuletzt am 06-Okt.-2018 14:11 von Administrator geändert.

Du bist nicht autorisiert, diese Seite umzubenennen.

Du bist nicht autorisiert, diese Seite zu löschen.

Versionsgeschichte der Seite

Version Zuletzt geändert Größe Autor Änderungen Kommentar

Links

Eingehende Links Ausgehende Links
CSS

Versionsunterschiede

Unterschiede zwischen Version und .

Zeile 1: 30 Zeilen hinzugefügt.
[{ALLOW view All}]
[{ALLOW edit Authenticated}]
[Frameworks Comparison at usablica.github.io|http://usablica.github.io/front-end-frameworks/compare.html]
[CSS 2.0|http://www.w3.org/TR/1998/REC-CSS2-19980512/cover.html]
[CSS 2.1|http://www.w3.org/TR/CSS21/]
[Selektors|http://www.w3.org/TR/CSS21/selector.html]
!Examples
Assign all child elements table, tr and td of a parent element with class="addrForm" the specified styles:
{{{
.addrForm table,
.addrForm tr,
.addrForm td {
margin: 0;
padding: 0;
background-color: #F00;
}
}}}
Assign style to any table which is a child of a parent with id="addrOutput"
{{{
#addrOutput table {
border-collapse: collapse;
}
}}}