Form submit button hover in CSS

Is it possible to give the submit button on forms a ‘hover’ style so that it acts like links on the rest of the site - these are hyperlinks with CSS styling behind them on the hover state.

I know how to style the button using CSS but not how to get hovering effects - in the past I’ve done this using mouseover code and images.

Thanks

I do belive you can turn the submit button into a normal hyperlink then add a image to it with a rollover image using basic xhtml/css


input[type="submit"]:hover {
	background: pink;
}

Or select it through a class or ID. For IE, you’ll need to use Javascript as it only supports pseudo classes on <a>'s.