HTML CSS examples for CSS Form:input button style
Cut button corner using CSS
<html> <head> <style> #btn2{<!-- ww w .j a va 2 s . c o m--> width: 150px; height: 100px; background: lightblue; -webkit-clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%); clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%); } </style> </head> <body> <button id="btn2">Hello</button> </body> </html>