Answers for "coustom button html style"

C
0

Button Styling

.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
Posted by: Guest on March-02-2022
0

how to style the button

/* Add style when button is focused or hovered */
button:focus,
button:hover {
  background-color: #0077ff;
  color: #e0efff;
}
Posted by: Guest on February-16-2022

Code answers related to "C"

Browse Popular Code Answers by Language