CSS – Formular mit Hintergrundfarbe
In diesem Tutorial wird beschrieben wie wir Formularen eine Hintergrundfarbe zuweisen.
Code:
<html> <head> <style type="text/css"> form{ background-color: #FF6600; } </style> </head> <body> <table width="300" border="1" cellspacing="1" cellpadding="1"> <tr> <td> <form name="form1" method="post" action=""> </form> </td> </tr> </table> </body> </html>