Adobe Digital Editions ist beim "None" case sensitive und hätte gerne "none".
Ich bin Pythonist und sage gerne "None".
Und CSS selbst? Ist case insensitive spezifiziert.
Noch ein nettes Detail: Anscheinend ist nur "all" ist ein erlaubtes Medium für ADE bisher - ich suche noch nach anderen, aber screen und print u.s.w. werden alle nicht für voll genommen.
Und dann ist da noch das Prinzip: media nicht verstanden => CSS weggeworfen:
Ein CSS mit
.x { color: red; }
@media all {
.y { color: green; }
}
macht .x rot und .y grün.
Ein CSS mit
.x { color: red; }
@media all and (max-width:200px) {
.y { color: green; }
}
beeinflusst weder die Farbe von .x- noch von .y-Class-Elementen.
Ein CSS mit
.x { color: red; }
@media screen {
.y { color: green; }
}
macht .x rot und lässt .y in Ruhe.
0 Kommentare:
Kommentar veröffentlichen