Hallo CSS-Anfänger.
ich möchte die Color-Angabe im nachfolgenden Statement in ein CSS-Dokument auslagern.
<input type="text" name="textfeld" style="color:#336666">
Ich hatte nun gedacht
input {color:#336666}
Aber dann bezieht es sich ja wohl auf alle input-Felder.
Wie kann ich es auf type="text" - Felder beschränken?
Am einfachsten wäre es mit Hilfe der http://de.selfhtml.org/css/formate/zentrale.htm#attributbedingte@title=Attributselektoren aus CSS Level 2:
input[type=text] {
color:#366;
}
Aber da der blaue Klotz hier nicht mitmacht, wirst du wohl oder übel eine http://de.selfhtml.org/css/formate/zentrale.htm#klassen@title=Klassengesellschaft einführen müssen.
Einen schönen Freitag noch.
Gruß, Mathias
--
sh:( fo:} ch:? rl:( br: n4:~ ie:{ mo:| va:) de:> zu:} fl:( ss:) ls:[ js:|
„It is required that HTML be a common language between all platforms. This implies no device-specific markup, or anything which requires control over fonts or colors, for example. This is in keeping with the SGML ideal.“
[HTML Design Constraints: Logical Markup]
sh:( fo:} ch:? rl:( br: n4:~ ie:{ mo:| va:) de:> zu:} fl:( ss:) ls:[ js:|
„It is required that HTML be a common language between all platforms. This implies no device-specific markup, or anything which requires control over fonts or colors, for example. This is in keeping with the SGML ideal.“
[HTML Design Constraints: Logical Markup]