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