CSS3 Button Shadow | Coding Tag
×

CSS3 Button Shadow

3152

How give shadows on html submit button, For create more attractive buttons with shadow effect, use below code and take idea.

You can easily modify into below code like color, background color, text color, shadow color, width, height and more.

: html input type buttons with shadow effect through CSS3 Style

Example:

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
button {
box-shadow: 6px 8px 6px rgba(183, 178, 178, 0.64);
background-color: #607D8B;
color: #fff;
padding: 14px;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
}
button:hover {
background-color:#006600;
cursor: pointer;
}
</style>
</head>

<body>
<button type="button" class="button"> Button Shadow </button>
</body>

</html>



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments