الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> a[title~="Harmash"] { background: dodgerblue; color: white; text-decoration: none; padding: 5px 10px; } </style> </head> <body> <h2>CSS [attribute~="value"] Selector</h2> <p>Links with title value containing the word "Harmash" will have dodgerblue background color.</p> <a href="/" title="Harmash">Home</a> <a href="/tutorials/css" title="made by Harmash">CSS</a> <a href="https://google.com">Google</a> </body> </html>