Underline Animation 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>Underline Animation Link</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #333; font-family: 'Arial', sans-serif; margin: 0; } .underline-link { position: relative; display: inline-block; font-size: 24px; text-decoration: none; color: #fff; padding: 12px 0; transition: all 0.3s ease; } .underline-link::before { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 4px; background-color: #ff5722; transition: all 0.3s ease; transform: translateX(-50%); } .underline-link:hover::before { width: 100%; } .underline-link:hover { color: #ff5722; } </style> </head> <body> <a href="#" class="underline-link">Underline Animation Link</a> </body> </html>