CSS Button Designs

CSS Button Designs


<html> 
<head> 
<style> 
.a 

 width: 90px; 
 height: 40px; 
 background: green;
box-sizing:border-box; 
padding:10px 12px;
color:white;
border-radius:10px;
box-shadow:5px 5px 5px red;
border:solid 2px yellow;


</style> 
</head> 
<body> 
<div class="a"><b>SUBMIT<b></div><br> 
</body> 

</html>

Let's enjoy Output



Comments

Popular Posts