css - Is there any way to shape the submit button of the HTML form? -


i'm creating html page forms. in want shape submit button arrow below (not below, i'm expecting 2d arrow)...

enter image description here

is there way that...

if you're interested using background image can use this:

button{    background: transparent url(shape.jpg) no-repeat;    border: none;    box-shadow: none;    width: 250px; /*img width*/    height: 350px; /*img height*/ } 

Comments