الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @media (min-height: 680px), screen and (orientation: portrait) { body { padding: 20px; } } </style> </head> <body> <h1>Media Queries</h1> <p>If min-height is 680px or screen orientation is portrait, then a 20px padding will be added to body from all sides.</p> <p>Resize of flip the screen to notice the padding change.</p> </body> </html>