I'm a beginner and still learning html. I made a search box and I can't figure out how to get my button to have a hover effect. I searched online and found some things and tried them out but I can't seem to get it to work. Can anyone help me? The code looks like this:
<div id="searchwrapper">
<form onsubmit="doInstantSearch();return false;">
<input type="text" id="SearchBox" class="searchbox" name="s" value="" size=30/>
<input type="image" src="search_button.png" class="searchbox_submit" value="" />
</form>
</div>
#searchwrapper {
width:310px;
height:40px;
background-repeat:no-repeat;
padding:0px;
margin:0px;
margin-left:280px;
z-index:7;
}
#searchwrapper form { display:inline ; }
.searchbox {
border:0px;
top:4px;
left:9px;
width:256px;
height:19px;
z-index:5;
}
.searchbox_submit {
border:0px; /*important*/
top:3.38px;
left:264.5px;
width:25px;
height:20.8px;
z-index:6;
}
<input type="image"is valid HTML; might want to look into that. – Toast Jul 28 '11 at 15:47<button>instead. – Wex Jul 28 '11 at 15:54