Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Vertically Center Align Text Using CSS</title> <style> .menu{ height: 20px; line-height: 20px; padding: 15px; border: 1px solid #666; } </style> </head> <body> <div class="menu"> <a href="#">Home</a> | <a href="#">About Us</a> | <a href="#">Contact</a> </div> </body> </html>