rH: Formulare farblich ändern!

Beitrag lesen

Hi,

1. Scrollteile sind Scrollbalken oder Scrollbars
2. Ach und kümmere dich nicht um meine Farbauswahl im HTML-Dokument,
leider bin ich nicht mit dem *Einfärbteil* im Dreamweaver zurrechtgekommen ;)

-------
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
input { background-color: #FF00FF; font-size: 100px; font-family: arial}
textarea { background-color: #660000; font-size: 100px; font-family: arial}
select { background-color: #33FF00; font-size: 100px; font-family: arial}

body {scrollbar-base-color:#05427C; scrollbar-face-color:#05427C}
</style>
</head>

<body bgcolor="#FFFFFF">
<form method="post" action="">
  <input type="text" name="textfield">
  <br>
  <textarea name="textfield2"></textarea>
  <br>
  <select name="select">
    <option>Text Text</option>
  </select>
</form>
</body>
</html>
-------

Nähere Erklärungen findest du in SELFHTML http://selfhtml.teamone.de/css/eigenschaften/index.htm!

rH