reference:
<html>
<head>
<style>
.button {
display: inline-block;
padding: 5px 10px;
font-size: 12px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 5px #999;
}
.button:hover {
background-color: #3e8e41
}
.button:active {
background-color: #3e8e41;
box-shadow: 0 2px #666;
transform: translateY(4px);
}
</style>
</head>
<body>
<input class="button" type="button" value="click me" />
</body>
</html>
<head>
<style>
.button {
display: inline-block;
padding: 5px 10px;
font-size: 12px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 5px #999;
}
.button:hover {
background-color: #3e8e41
}
.button:active {
background-color: #3e8e41;
box-shadow: 0 2px #666;
transform: translateY(4px);
}
</style>
</head>
<body>
<input class="button" type="button" value="click me" />
</body>
</html>
No comments:
Post a Comment