الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @media screen and (max-width: 400px) { p { color: red; } } </style> </head> <body> <p>Default color is black.</p> <p>If max-width is 400px, the red color will be applied.</p> <p>Resize the screen to see the difference.</p> </body> </html>