HTML CSS examples for CSS Widget:Button
Change border shape of button
<html> <head> <style> .submit1 {<!-- ww w . java 2s .co m--> background-color: #ff7704; border: medium none; border-radius: 10px; color: #fff; font-size: 23px; font-weight: bold; padding: 15px; padding-right:70px; min-width: 140px; background-image:url('https://www.java2s.com/style/demo/Firefox.png'); background-size: contain; background-repeat: no-repeat; background-position: right; } </style> </head> <body> <button class="submit1">Upload Picture</button> </body> </html>