HTML Buttons Size

  • Post category:CSS

Get the code of HTML Buttons Size and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<button>Subscribe</button>
button {
  width: 100%;
  border: 2px solid red;
  background: red;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}
button:hover {
  width: 50%;
  background: green;
}