HTML CSS examples for CSS Widget:Button
Button with three background images css
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .back {<!-- ww w. j a v a2s.c o m--> border: none; height: 28px; padding-right: 8px; padding-left: 14px; background-image: url("https://www.java2s.com/style/demo/Safari.png"), url("https://www.java2s.com/style/demo/Safari.png"), url("https://www.java2s.com/style/demo/Safari.png"); background-position: 14px 0px, left, right; background-size: 30px 100%, 14px 28px, 8px 28px; background-repeat: no-repeat,no-repeat,no-repeat; } </style> </head> <body> <button class="back">Back</button> </body> </html>