HTML CSS examples for CSS Widget:Button
Button with inverted half circle side
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .buttonCool{<!-- www .ja va 2s . c o m--> border-radius: 10px 0px 0px 10px; border: 2px solid; } .shadow{ margin-left: -12px; } </style> </head> <body> <button class="buttonCool" type="button">Click Me!</button> <button class="buttonCool shadow" type="button">Click Me!</button> <button class="buttonCool shadow" type="button">Click Me!</button> <button class="buttonCool shadow" type="button">Click Me!</button> </body> </html>