Advertisement
ianchopra

Floating Button CSS

Apr 9th, 2020
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Floating Button</title>
  7.     <style>
  8.         .floating-button{
  9.             background: #FF0000;
  10.             color: #FFFFFF;
  11.             padding: 3px 12px;
  12.             border-radius: 20px;
  13.             position: fixed;
  14.             text-decoration: none;
  15.             font-size: 30px;
  16.             font-weight: bold;
  17.             box-shadow: 1px 3px 5px #ccc;
  18.             bottom: 20px;
  19.             right: 20px;
  20.         }
  21.     </style>
  22. </head>
  23. <body>
  24.     <a href="#" class="floating-button">
  25.         +  
  26.     </a>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement