tobi: graphische Eingabefelder

Hallo.

Wie kann man denn ein INPUT - TAG graphisch gestalten ?

D.h. wie kann ich dem "Input - Kasten" bespielsweise eine Grapfik zuordnen, dass nicht immer der weise Kasten kommt ?

Vielen Dank im Voraus, Tobi

  1. Hallo Tobi.

    CSS ist Dein Freund dafür:
    http://selfhtml.teamone.de/css/
    http://selfhtml.teamone.de/navigation/css.htm

    Grüße aus Würzburg
    Julian

    P.S: Oder Flash odgl.

    1. Hallo Tobi.

      CSS ist Dein Freund dafür:
      http://selfhtml.teamone.de/css/
      http://selfhtml.teamone.de/navigation/css.htm

      Grüße aus Würzburg
      Julian

      P.S: Oder Flash odgl.

      Danke, für die schnelle antwort, aber irgetwie bekomm ich dass mit den CSS nicht hin, ich gebe bspw. folgendes an :

      form
         { background-image:url(background.gif); padding:20px; border:6px solid #DDDDDD; }
       td, input, select, textarea
         { font-size:13px; font-family:Verdana,sans-serif; font-weight:bold; }
       input, select, textarea
         { color:#0000CC; }

      er macht aber nix !!!

      Könntest du mir nochmals helfen, danke

      1. Servus tobi

        versuch das mal aus. Der Netscape 4.x kanns nicht. Der Rest müßte aber alles darstellen.

        Gruß Goofy

        <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
                "http://www.w3.org/TR/html4/loose.dtd">
        <html>
        <head>
        <title>Untitled Document</title>
        <style type="text/css">
        <!--
         form
           { padding:20px; border:6px solid #DDDDDD; }
         textarea
           { font-size:13px; font-family:Verdana,sans-serif; font-weight:bold;
             background-color:#FFDDDD; color:#0000CC;
           }
          -->
        </style>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        </head>

        <body>
         <form><textarea readonly rows=4 cols=30>Blubber Brause bla bla bla
               </textarea>
         </form>
        </body>
        </html>