SVG/Attribut/media
Aus SELFHTML-Wiki
Mit dem media-Attribut legen Sie das gewünschte Ausgabemedium des style-Elements fest.
- Erlaubte Werte
komma-getrennte Liste von Medientypen
- Standardwert
all
- anwendbar auf
- Präsentationsattribut
nein
- mit CSS animierbar
nein
Beispiel
<svg viewBox="0 0 240 220" xmlns="http://www.w3.org/2000/svg">
<style>
rect { fill: black; }
</style>
<style media="all and (min-width: 600px)">
rect { fill: seagreen; }
</style>
<text y="15">Resize the window to see the effect</text>
<rect y="20" width="200" height="200" />
</svg>
Siehe auch
Weblinks
- Spezifikation (W3C): media Attribute