Border Grow Link - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Border Grow Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #fafafa; font-family: Arial, sans-serif; } .link-border-grow { display: inline-block; padding: 15px 30px; font-size: 18px; color: #333; text-decoration: none; background-color: transparent; border: 2px solid #333; border-radius: 30px; position: relative; overflow: hidden; transition: all 0.4s ease; } .link-border-grow::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background-color: rgba(51, 51, 51, 0.2); border-radius: 50%; transition: all 0.4s ease; transform: translate(-50%, -50%); z-index: -1; } .link-border-grow:hover::before { width: 300%; height: 300%; } </style> </head> <body> <a href="#" class="link-border-grow">Border Grow Link</a> </body> </html>