الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> body { font-family: arial; } #orientation { display: block; position: fixed; right: 20px; bottom: 20px; padding: 10px 20px; border-radius: 8px; background: dodgerblue; color: white; } @media (orientation: landscape) { #orientation::before { content: 'Landscape Mode'; } } @media (orientation: portrait) { #orientation::before { content: 'Portrait Mode'; } } </style> </head> <body> <h1>Media Query Orientation</h1> <p>The orientation note at the bottom will be updated base on the screen orientation.</p> <div id="orientation"></div> </body> </html>