Slide 1

Slide 1 text

CSS Media Queries Auf Geräte und Browser reagieren Michael Jendryschik

Slide 2

Slide 2 text

Es gibt verschiedene Möglichkeiten, den Geltungsbereich von CSS auf bestimmte Medien einzuschränken.

Slide 3

Slide 3 text

aural für Sprachbrowser

Slide 4

Slide 4 text

braille für Ausgabegeräte mit Braillezeile

Slide 5

Slide 5 text

embossed für Brailledrucker

Slide 6

Slide 6 text

handheld für Handcomputer und Mobiltelefone

Slide 7

Slide 7 text

print für Drucker

Slide 8

Slide 8 text

projection für Projektoren

Slide 9

Slide 9 text

screen für Computermonitore

Slide 10

Slide 10 text

tty für Ausgabemedien mit Festbreitenschrift

Slide 11

Slide 11 text

tv für Fernseher

Slide 12

Slide 12 text

@import url("style.css") screen; @media print { div#header, div#sidebar, div#footer { display: none; } }

Slide 13

Slide 13 text

Mit CSS Media Queries ist es möglich, die Einbindung von CSS davon abhängig zu machen, ob ein Medium oder Ausgabegerät bestimmte Merkmale aufweist oder nicht.

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

No content

Slide 16

Slide 16 text

No content

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

@media (min-width: 950px) { /* Regeln für breite Browserfenstern */ } @media (min-width: 450px) and (max-width: 950px) { /* Regeln für Netbooks */ } @media (max-width: 450px) { /* Regeln für mobile Geräte */ }

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

@media screen and (max-width: 600px) { .mast, .intro, .main, .footer { float: none; width: auto; } }

Slide 23

Slide 23 text

No content

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

@media screen and (max-width: 500px) { ... } @media screen and (max-width: 800px) { ... } @media screen and (min-width: 1024px) { ... } @media handheld and (max-device-width: 480px), screen and (max-device-width: 480px), screen and (max-width: 600px) { ... } @media screen and (min-width: 920px) { ... } @media screen and (min-width: 1350px) { ... } @media screen and (min-width: 1500px) { ... } @media only screen and (max-device-width: 480px) { ... } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { ... }

Slide 28

Slide 28 text

No content

Slide 29

Slide 29 text

CSS Media Queries: Grundlagen und Syntax

Slide 30

Slide 30 text

Media Queries sind logische Ausdrücke, die die Angabe von Medientypen und bestimmten Medienmerkmalen miteinander verknüpfen.

Slide 31

Slide 31 text

Bezeichnung Beispiel Media Query screen and (max-width: 300px) Medientyp screen and (max-width: 300px) Verknüpfung screen and (max-width: 300px) Ausdruck screen and (max-width: 300px) Merkmal screen and (max-width: 300px) Wert screen and (max-width: 300px)

Slide 32

Slide 32 text

Das Schlüsselwort and drückt ein logisches Und aus. screen and (max-width: 300px) (min-width: 450px) and (max-width: 950px)

Slide 33

Slide 33 text

Ein Komma steht für ein logisches Oder. @import url("style.css") screen, projection;

Slide 34

Slide 34 text

Das Schlüsselwort not steht für eine logische Negation.

Slide 35

Slide 35 text

Das Schlüsselwort only ist ein Workaround für veraltete Browser, die mit Media Queries nicht umzugehen wissen.

Slide 36

Slide 36 text

CSS3 Media Queries Medienmerkmale

Slide 37

Slide 37 text

Merkmal min/max Beschreibung width Ja Breite der Anzeigefläche height Ja Höhe der Anzeigefläche device-width Ja Breite des Geräts device-height Ja Höhe des Geräts

Slide 38

Slide 38 text

Viewport mindestens 500px hoch?

Slide 39

Slide 39 text

iPhone?

Slide 40

Slide 40 text

Merkmal min/max Beschreibung aspect-ratio Ja Verhältnis der Merkmale width und height device-aspect-ratio Ja Verhältnis der Merkmale device- width und device-height orientation Nein Ausrichtung des Geräts

Slide 41

Slide 41 text

Seitenverhältnis 16:9? screen and (device-aspect-ratio: 16/9) screen and (device-aspect-ratio: 32/18) screen and (device-aspect-ratio: 1280/720)

Slide 42

Slide 42 text

Horizontale oder vertikale Ausrichtung eines iPad?

Slide 43

Slide 43 text

Merkmal min/max Beschreibung color Ja Farbtiefe des Geräts color-index Ja Anzahl der Einträge in der Farb-Lookup-Tabelle des Geräts monochrome Ja Anzahl der Bits pro Pixel im Bildspeicher eines einfarbigen Geräts

Slide 44

Slide 44 text

Schwarzweiß- oder Farbdrucker?

Slide 45

Slide 45 text

No content

Slide 46

Slide 46 text

iPhone 4?

Slide 47

Slide 47 text

Browserkompatibilität

Slide 48

Slide 48 text

No content

Slide 49

Slide 49 text

Michael Jendryschik http://jendryschik.de http://www.itemis.de http://www.webkrauts.de http://twitter.com/jendryschik http://facebook.com/jendryschik

Slide 50

Slide 50 text

Quellennachweis • http://www.digitale-chancen.de/transfer/assets/468.jpg • http://ceipntrasradelapiedad.files.wordpress.com/2010/03/braille.jpg • http://gadgets.boingboing.net/Palm-Pre-Disassembled.jpg • http://upload.wikimedia.org/wikipedia/commons/d/dc/Westermann_Druckerei_1890.png • http://www.infocus.rbt-pressroom.eu/de/download/der-heimkino-projektor-sp8602-kommt-vielen- hochleistungsfhigen-eigenschaften-auf-den-markt-4.jpg • http://upload.wikimedia.org/wikipedia/commons/2/2c/Monitor_in_gutter.jpg • http://cmsdata.iucn.org/img/original/iberian_lynx_by_antonio_rivas.jpg • http://www.comcast.com/MediaLibrary/1/1/About/PressRoom/Images/LogoAndMediaLibrary/Photography/CableNe tworks/Teletubbies-Group2.jpg • http://www.pm.ruhr-uni-bochum.de/imperia/md/images/pressestelle/einstein.jpg • http://www.colgate.at/OralHealthMonth/AT/2009/arch/2007/colgate_merkmale0805.jpg • http://www.claudia-berg-grafik.de/claudia_berg_Grasland.jpg • http://www.grossi-online.de/gallery2/d/314-1/Farbe_001.jpg • http://www.apple.com/iphone/ • http://wallpapers-diq.net/wallpapers/30/Firefox%2C_The_Browser%2C_Reloaded.jpg