الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> p { color: gray; } @media screen and (max-width: 400px) { p { color: red; } } </style> </head> <body> <p>Initial color is gray.</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>