Forum Moderators: not2easy
I've been playing around with CSS and I've figured out that I can apply a certain style to all
div's in a td, or to all elements with a particular id. I want to change the default cursor from the arrow to the hand for all form buttons - but not to text fields etc... Can I apply a style to
<input type="submit" name="Submit" value="Submit"> but not to
<input type="text" name="email_address" value=""> -- Without giving all my buttons a seperate
class or id attribute? Thanks,
Steve.
INPUT[type="text"] {
width: 200px;
}
<div id="whatever">
<input ...>
</div>
div input
{
width: 200;
}
this way, at least, you could get the desired affct with the minimum amount of code. then, when css2 is fully supported, simply remove the style for the div.