如何创建:通知按钮

学习如何使用 CSS 创建通知按钮。

Inbox 3

如何创建通知按钮

第一步 - 添加 HTML:

<a href="#" class="notification">
  <span>Inbox</span>
  <span class="badge">3</span>
</a>

第二步 - 添加 CSS:

.notification {
  background-color: #555;
  color: white;
  text-decoration: none;
  padding: 15px 26px;
  position: relative;
  display: inline-block;
  border-radius: 2px;
}

.notification:hover {
  background: red;
}

.notification .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  border-radius: 50%;
  background: red;
  color: white;
}

亲自试一试

相关页面

教程:CSS 按钮