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