了解如何使用 CSS 创建通知按钮。
<a href="#" class="notification">
<span>Inbox</span>
<span class="badge">3</span>
</a>
.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 按钮教程了解有关如何设置按钮样式的更多信息。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!