Alexander, W.: Vorschlag im Textfeld helgrau

Beitrag lesen

Hallo,

<input type="text" name="aname" value="das soll helgrau sein" />

Mit CSS und dem Selector
input[name="aname"] { color:#ccc; }

oder

<input style="color: #ccc" type="text" name="aname" value="das soll helgrau sein" />

Gruß Alexander.