Hi,
http://www.w3.org/TR/css3-selectors/#attribute-substrings
Zu diesen Attribut-Angaben in CSS hätt ich ne kurze Zwischenfrage:
Ist es möglich ein "ist nicht" irgendwie auszudrücken (z.B. input[type!="submit"] o.ä.) Konnte unter obengenanntem Link nichts finden.
So weit ich weiß, nicht direkt, aber wenn Du z.B
input { color:red; }
input[type="submit"] { color:blue; }
schreibst, werden alle inputs rot sein außer den submits.
Oder Du listest alle vorhandenen Werte außer submit auf:
input[type="text"], input[type="password"], input[type="checkbox"], input[type="radio"], input[type="reset"],
input[type="file"], input[type="hidden"], input[type="image"], input[type="button"]
{ color:red; }
cu,
Andreas
--
Der Optimist: Das Glas ist halbvoll. - Der Pessimist: Das Glas ist halbleer. - Der Ingenieur: Das Glas ist doppelt so groß wie nötig.
http://mud-guard.de/? http://www.andreas-waechter.de/ http://www.helpers.de/
Der Optimist: Das Glas ist halbvoll. - Der Pessimist: Das Glas ist halbleer. - Der Ingenieur: Das Glas ist doppelt so groß wie nötig.
http://mud-guard.de/? http://www.andreas-waechter.de/ http://www.helpers.de/