پیش‌نمایش زنده
کد HTML
<button>Notification By HTML Data attribute</button>
کد CSS
button {
  position: relative;
  margin: 1rem;
  z-index: 2;
  border-radius: 8px;
  appearance: none;
  padding: 1em 2em;
  transition: all 0.2s;
}

button {
  padding: 1.2rem;
  position: relative;
  z-index: 1;
}

button::before {
  content: "6";
  position: absolute;
  display: flex;
  top: -0.75em;
  right: -0.75em;
  height: 1.8em;
  width: 1.8em;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: red;
  color: white;
  z-index: 999;
  transition: all 0.2s;
}

button:hover {
  border-radius: 3px;
  border-color: red;
}

button:hover::before {
  height: 2em;
  width: 2em;
  font-size: 1.5em;
}
نوع: button
تاریخ ایجاد: 2026/06/05
آخرین بروزرسانی: 2026/06/05