CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSで通知ボタンを作成するにはどうすればよいですか?


以下は、CSSで通知ボタンを作成するためのコードです-

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body{
   font-family: monospace,serif,sans-serif;
}
.notificationContainer {
   margin: 20px;
   background-color: rgb(254, 255, 171);
   color: black;
   text-decoration: none;
   padding: 15px 26px;
   font-size: 32px;
   position: relative;
   display: inline-block;
   border-radius: 2px;
   border:2px solid black;
}
.notificationContainer:hover {
   background: rgb(43, 8, 138);
   color:white;
}
.notificationContainer .notificationBadge {
   position: absolute;
   top: -10px;
   right: -10px;
   padding: 5px 10px;
   border-radius: 50%;
   background-color: rgb(0, 170, 51);
   color: white;
}
</style>
</head>
<body>
<h1>Notification Button Example</h1>
<a href="#" class="notificationContainer">
<span>Messages</span>
<span class="notificationBadge">99+</span>
</a>
</body>
</html>

出力

上記のコードは次の出力を生成します-

CSSで通知ボタンを作成するにはどうすればよいですか?

メッセージボタンの上にカーソルを合わせると、色が次のように変わります-

CSSで通知ボタンを作成するにはどうすればよいですか?


  1. CSSでクーポンを作成するにはどうすればよいですか?

    CSSでクーポンを作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-seri

  2. CSSで矢印を作成するにはどうすればよいですか?

    CSSで矢印を作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;