Answers for "css hover button effects"

CSS
1

hover effect button css

/*CSS Hover*/
.button {
  border-radius: 3px;
  border: none;
  background-color: red;
  color: white;
  transition: all 0.3s ease
}
.button:hover {
  transform: rotate(360deg);
  transform: scale(1.01);
}
Posted by: Guest on September-10-2021
2

cool hover effects css

.i {
    color: #fff;
    font-size: 35px;
    margin: 15px 15px 0 15px;
    transition: 0.2s;
    transition-property: color, transform;
}

i:hover {
    color: #FF5733;
    transform: scale(1.3);
}
Posted by: Guest on August-11-2020
0

hover effect button css

<!--BUTTON-->
<button class="button">CLICK</button>
<link type="stylesheet" src="style.css">
Posted by: Guest on September-10-2021

Browse Popular Code Answers by Language