الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div[lang|="en"] { color: dodgerblue; } </style> </head> <body> <h2>CSS [attribute|="value"] Selector</h2> <p>Elements with lang attribute starting with "en" will have dodgerblue background color.</p> <div lang="en">This element is selected.</div> <div lang="en-us">This element is selected.</div> <div lang="fr">This element is not selected.</div> </body> </html>