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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -