Title: form input

Is there some way that you can only target input elements with type SUBMIT?

Example;

<style>
form input
{
        background-color: #FFCFCE;
        border: 1px solid black;
        font-weight: bold;
        color: white;
        width: 160px;
        background-image: url(../image/buttonSubmit_background03.gif);
        cursor: hand;
        background-repeat: repeat-x;
}
</style>
</head>

<body>

<form>
  <input type="submit" value="test"><br/>
  <input type="text" name="blah">
</form>

This would apply the style over all INPUT elements, but I was wondering if it could be just applied to the input elements that have type SUBMIT or BUTTON?

I realize I could do it the following way, but thats not what I am after.

<style>
form input .submit
{
        background-color: #FFCFCE;
        border: 1px solid black;
        font-weight: bold;
        color: white;
        width: 160px;
        background-image: url(../image/buttonSubmit_background03.gif);
        cursor: hand;
        background-repeat: repeat-x;
}
</style>
</head>

<body>

<form>
  <input type="submit" value="test" class="submit"><br/>
  <input type="text" name="blah">
</form>
Taco Fleur
Tell me and I will forget
Show me and I will remember
Teach me and I will learn

Reply via email to