الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> a[href$=".com"] { color: dodgerblue; } </style> </head> <body> <h2>CSS [attribute$="value"] Selector</h2> <p>Links with href value ending with ".com" will have dodgerblue color.</p> <a href="https://harmash.com">Harmash</a> <a href="https://angular.io">Angular</a> </body> </html>