الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .dropdown { position: relative; display: inline-block; } .dropdown-img { width: 120px; height: 60px; cursor: pointer; } .dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 240px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; text-align: center; } .dropdown-content img { display: block; max-width: 100%; height; auto; } .dropdown:hover .dropdown-content { display: block; } </style> </head> <body> <h2>Dropdown Image</h2> <p>Move the mouse over the image to open its dropdown.</p> <div class="dropdown"> <img class="dropdown-img" src="/tutorials/css/dropdowns/bird.jpg"/> <div class="dropdown-content"> <img src="/tutorials/css/dropdowns/bird.jpg"/> <p>A beautiful bird.</p> </div> </div> </body> </html>