الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ul { list-style-type: none; margin: 0; padding: 0; width: 220px; background-color: #f1f1f1; border: 1px solid #444; } li { text-align: center; border-bottom: 1px solid #444; } li:last-child { border-bottom: none; } li a { display: block; color: #000; padding: 12px 16px; text-decoration: none; } li a:hover:not(.active) { color: white; background-color: #444; } .active { color: white; background-color: darkcyan; } </style> </head> <body> <h1>Vertical Navigation Bar</h1> <p>The hover effect works only with links that not are using the "active" class.</p> <ul> <li><a href="#home" class="active">Home</a> <li><a href="#services">Services</a> <li><a href="#contact">Contact</a> <li><a href="#about">About</a> </ul> </body> </html>