inputボタン(送信ボタン)を画像にするCSS

html

<form>
    <input type="submit" value="" id="image-btn" />
</form>


css

#image-btn {
    border: 0px;
    width: 100px;
    height: 30px;
    background: url(image_btn.png) left top no-repeat;
}

ネタ元